如何处理传入的电子邮件,然后使用google-app-engine发回一些单词

时间:2010-04-23 07:42:59

标签: python django google-app-engine incoming-mail

我阅读了文档:

from google.appengine.api import mail
mail.send_mail(sender="support@example.com",
                  to="Albert Johnson <Albert.Johnson@example.com>",
                  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
""")

我知道如何使用GAE发送电子邮件,但如何查看收到的电子邮件然后做某事?

由于

1 个答案:

答案 0 :(得分:1)

以下是文档中涉及如何receive email

的页面