We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4838ba9 commit d4a3d28Copy full SHA for d4a3d28
sendgrid/message.py
@@ -45,7 +45,7 @@ def __init__(self, **opts):
45
self.add_bcc(opts.get('bcc', []))
46
self.reply_to = opts.get('reply_to', '')
47
self.files = opts.get('files', {})
48
- self.headers = opts.get('headers', '')
+ self.set_headers(opts.get('headers', ''))
49
self.date = opts.get('date', rfc822.formatdate())
50
self.content = opts.get('content', {})
51
self.smtpapi = opts.get('smtpapi', SMTPAPIHeader())
sendgrid/version.py
@@ -1,2 +1,2 @@
1
-version_info = (1, 2, 3)
+version_info = (1, 2, 4)
2
__version__ = '.'.join(str(v) for v in version_info)
0 commit comments