Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6f28c4e

Browse filesBrowse files
committed
Merge branch 'master' into xmpp
2 parents a8fcbca + 9f68a02 commit 6f28c4e
Copy full SHA for 6f28c4e

File tree

Expand file treeCollapse file tree

3 files changed

+6
-6
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+6
-6
lines changed

‎appengine/mail/header.py

Copy file name to clipboardExpand all lines: appengine/mail/header.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
def send_example_mail(sender_address, email_thread_id):
21-
# [BEGIN send_mail]
21+
# [START send_mail]
2222
mail.send_mail(sender=sender_address,
2323
to="Albert Johnson <Albert.Johnson@example.com>",
2424
subject="An example email",
@@ -28,7 +28,7 @@ def send_example_mail(sender_address, email_thread_id):
2828
The example.com Team
2929
""",
3030
headers={"References": email_thread_id})
31-
# [SEND send_mail]
31+
# [END send_mail]
3232

3333

3434
class SendMailHandler(webapp2.RequestHandler):

‎appengine/mail/send_mail.py

Copy file name to clipboardExpand all lines: appengine/mail/send_mail.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
def send_approved_mail(sender_address):
21-
# [BEGIN send_mail]
21+
# [START send_mail]
2222
mail.send_mail(sender=sender_address,
2323
to="Albert Johnson <Albert.Johnson@example.com>",
2424
subject="Your account has been approved",
@@ -32,7 +32,7 @@ def send_approved_mail(sender_address):
3232
3333
The example.com Team
3434
""")
35-
# [SEND send_mail]
35+
# [END send_mail]
3636

3737

3838
class SendMailHandler(webapp2.RequestHandler):

‎appengine/mail/send_message.py

Copy file name to clipboardExpand all lines: appengine/mail/send_message.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
def send_approved_mail(sender_address):
21-
# [BEGIN send_message]
21+
# [START send_message]
2222
message = mail.EmailMessage(
2323
sender=sender_address,
2424
subject="Your account has been approved")
@@ -35,7 +35,7 @@ def send_approved_mail(sender_address):
3535
The example.com Team
3636
"""
3737
message.send()
38-
# [SEND send_message]
38+
# [END send_message]
3939

4040

4141
class SendMessageHandler(webapp2.RequestHandler):

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.