0

我读了文档:

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 发送电子邮件,但是如何检查收到的电子邮件然后做些什么呢?

谢谢

4

1 回答 1

1

这是文档中处理如何接收电子邮件的页面。

于 2010-04-23T09:20:15.883 回答