how to dispose a incoming email and then send some words back using googe-app-engine..

Posted by zjm1126 on Stack Overflow See other posts from Stack Overflow or by zjm1126
Published on 2010-04-23T07:42:58Z Indexed on 2010/04/23 7:43 UTC
Read the original article Hit count: 459

from google.appengine.api import mail

i read the doc:

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

© Stack Overflow or respective owner

Related posts about google-app-engine

Related posts about incoming-mail