You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+32
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,38 @@
1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## [4.0.0] - 2017-04-05 ##
5
+
### BREAKING CHANGE
6
+
- Pull #244[refactor helpers using property getter/setter](https://github.com/sendgrid/sendgrid-python/pull/244/files)
7
+
- Big thanks to [Denis Vlasov](https://github.com/denis90) for the pull request!
8
+
- The changes break the impelmentation of the [Mail Helper](https://github.com/sendgrid/sendgrid-python/tree/master/sendgrid/helpers/mail)`Mail()` class
9
+
-`set_from()` is now the property `from_email`
10
+
-`set_subject()` is now the property `subject`
11
+
-`set_template_id()` is now the property `template_id`
12
+
-`set_send_at()` is now the property `send_at`
13
+
-`set_batch_id()` is now the property `batch_id`
14
+
-`set_asm()` is now the property `asm`
15
+
-`set_ip_pool_name()` is now the property `ip_pool_name`
16
+
-`set_mail_settings()` is now the property `mail_settings`
17
+
-`set_tracking_settings()` is now the property `tracking_settings`
18
+
-`set_reply_to()` is now the property `reply_to`
19
+
-`personalization.set_send_at()` is now the property `personalization.send_at`
20
+
-`personalization.set_subject()` is now the property `personalization.subject`
21
+
-`attachment.set_content()` is now the property `attachment.content`
22
+
-`attachment.set_type()` is now the property `attachment.type`
23
+
-`attachment.set_filename()` is now the property `attachment.filename`
24
+
-`attachment.set_disposition()` is now the property `attachment.disposition`
25
+
-`attachment.set_content_id()` is now the property `attachment.content_id`
26
+
-`mail_settings.set_bcc_settings()` is now the property `mail_settings.bcc_settings`
27
+
-`mail_settings.set_bypass_list_management()` is now the property `mail_settings.bypass_list_management`
28
+
-`mail_settings.set_footer_settings()` is now the property `mail_settings.footer_settings`
29
+
-`mail_settings.set_sandbox_mode()` is now the property `mail_settings.sandbox_mode`
30
+
-`mail_settings.set_spam_check()` is now the property `mail_settings.spam_check`
31
+
-`tracking_settings.set_click_tracking()` is now the property `click_tracking`
32
+
-`tracking_settings.set_open_tracking()` is now the property `open_tracking`
33
+
-`tracking_settings.set_subscription_tracking()` is now the property `subscription_tracking`
34
+
-`tracking_settings.set_ganalytics()` is now the property `ganalytics`
35
+
4
36
## [3.6.5] - 2017-03-30 ##
5
37
### Updated
6
38
- Pull #300[Exclude test package](https://github.com/sendgrid/sendgrid-python/pull/250)
tracking_settings.set_open_tracking(OpenTracking(True, "Optional tag to replace with the open image in the body of the message"))
115
-
tracking_settings.set_subscription_tracking(SubscriptionTracking(True, "text to insert into the text/plain portion of the message", "<html><body>html to insert into the text/html portion of the message</body></html>", "Optional tag to replace with the open image in the body of the message"))
tracking_settings.open_tracking=OpenTracking(True, "Optional tag to replace with the open image in the body of the message")
115
+
tracking_settings.subscription_tracking=SubscriptionTracking(True, "text to insert into the text/plain portion of the message", "<html><body>html to insert into the text/html portion of the message</body></html>", "Optional tag to replace with the open image in the body of the message")
0 commit comments