Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ install:
- pip install -r dev-requirements.txt
- pip uninstall django --yes
- pip install -q django$DJANGO_VERSION
- pip install coverage==4.5.4
- pip install coveralls
- pip install -e .
before_script:
- flake8 sparkpost test
script:
- py.test --cov sparkpost test/ --cov-report term-missing
- py.test
after_success:
- coveralls
notifications:
Expand Down
3 changes: 3 additions & 0 deletions sparkpost/transmissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'campaign': 'campaign_id',
'start_time': 'options/start_time',
'track_opens': 'options/open_tracking',
'track_initial_opens': 'options/initial_open',
'track_clicks': 'options/click_tracking',
'transactional': 'options/transactional',
'use_sandbox': 'options/sandbox',
Expand Down Expand Up @@ -264,6 +265,8 @@ def send(self, **kwargs):
'2015-02-11T08:00:00-04:00'.
:param bool track_opens: Defaults to True. Used to track opens of
transmission
:param bool track_initial_opens: Used to track opens
of transmission with top pixel
:param bool track_clicks: Defaults to True. Used to track clicks of
transmission
:param bool use_sandbox: Flag must be set to use sandbox domain instead
Expand Down