File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55## Unreleased
66- [ Compare to latest release] [ unreleased ]
77
8+ ## [ 1.3.8] - 2021-04-09
9+ - [ #214 ] ( https://github.com/SparkPost/python-sparkpost/pull/214 ) Support for AMP HTML for transmissions
10+
811## [ 1.3.7] - 2021-03-24
912- [ #211 ] ( https://github.com/SparkPost/python-sparkpost/pull/211 ) Support for top open pixel for transmissions
1013
Original file line number Diff line number Diff line change 66
77setup (
88 name = 'sparkpost' ,
9- version = '1.3.7 ' ,
9+ version = '1.3.8 ' ,
1010 author = 'SparkPost' ,
1111 author_email = 'developers@sparkpost.com' ,
1212 packages = find_packages (),
Original file line number Diff line number Diff line change 99from .transmissions import Transmissions
1010
1111
12- __version__ = '1.3.7 '
12+ __version__ = '1.3.8 '
1313
1414EU_API = 'api.eu.sparkpost.com'
1515US_API = 'api.sparkpost.com'
Original file line number Diff line number Diff line change 3232 'subject' : 'content/subject' ,
3333 'from_email' : 'content/from' ,
3434 'html' : 'content/html' ,
35+ 'amp_html' : 'content/amp_html' ,
3536 'text' : 'content/text' ,
3637 'template' : 'content/template_id' ,
3738 'attachments' : 'content/attachments' ,
@@ -201,6 +202,7 @@ def send(self, **kwargs):
201202 :param bool use_draft_template: Defaults to False. Set to true if you
202203 want to send a template that is a draft
203204 :param str html: HTML part of transmission
205+ :param str amp_html: AMP HTML part of the transmission
204206 :param str text: Text part of transmission
205207 :param str subject: Subject of transmission
206208 :param str from_email: Email that the transmission comes from. The
You can’t perform that action at this time.
0 commit comments