Skip to content
Merged
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
2 changes: 1 addition & 1 deletion python-examples/basic/basic_send_with_amp_body.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# build the message
message = BasicMessage()

message.subject = "Sending A Test Message (Basic Send)"
message.subject = "Sending A Test Message (Basic Send With AMP Body)"

message.html_body = "<html><body>" \
"<h1>This HTML will show if AMP is not supported on the receiving end of the email.</h1>" \
Expand Down
2 changes: 1 addition & 1 deletion python-examples/bulk/bulk_send_with_amp_body.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
message = BulkMessage()


message.subject = "Sending A Test Message (Bulk Send)"
message.subject = "Sending A Test Message (Bulk Send With AMP Body)"

message.html_body = "<html><body>" \
"<h1>This HTML will show if AMP is not supported on the receiving end of the email.</h1>" \
Expand Down