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 に答える