views:

28

answers:

1

i read the doc:

from google.appengine.api import mail
mail.send_mail(sender="[email protected]",
                  to="Albert Johnson <[email protected]>",
                  subject="Your account has been approved",
                  body="""
    Dear Albert:

Your example.com account has been approved.  You can now visit
http://www.example.com/ and sign in using your Google Account to
access new features.

Please let us know if you have any questions.

The example.com Team
""")

and i know hwo to send a email using gae ,but

how to check a email incoming, and then do something

thanks

+1  A: 

Here's the page in the docs that deals with how to receive email.

Nick Johnson