Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc tags. #308

Merged
merged 1 commit into from
Apr 28, 2016
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
4 changes: 2 additions & 2 deletions appengine/mail/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


def send_example_mail(sender_address, email_thread_id):
# [BEGIN send_mail]
# [START send_mail]
mail.send_mail(sender=sender_address,
to="Albert Johnson <Albert.Johnson@example.com>",
subject="An example email",
Expand All @@ -28,7 +28,7 @@ def send_example_mail(sender_address, email_thread_id):
The example.com Team
""",
headers={"References": email_thread_id})
# [SEND send_mail]
# [END send_mail]


class SendMailHandler(webapp2.RequestHandler):
Expand Down
4 changes: 2 additions & 2 deletions appengine/mail/send_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


def send_approved_mail(sender_address):
# [BEGIN send_mail]
# [START send_mail]
mail.send_mail(sender=sender_address,
to="Albert Johnson <Albert.Johnson@example.com>",
subject="Your account has been approved",
Expand All @@ -32,7 +32,7 @@ def send_approved_mail(sender_address):

The example.com Team
""")
# [SEND send_mail]
# [END send_mail]


class SendMailHandler(webapp2.RequestHandler):
Expand Down
4 changes: 2 additions & 2 deletions appengine/mail/send_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


def send_approved_mail(sender_address):
# [BEGIN send_message]
# [START send_message]
message = mail.EmailMessage(
sender=sender_address,
subject="Your account has been approved")
Expand All @@ -35,7 +35,7 @@ def send_approved_mail(sender_address):
The example.com Team
"""
message.send()
# [SEND send_message]
# [END send_message]


class SendMessageHandler(webapp2.RequestHandler):
Expand Down