私のアプリケーションから電子メールを送信しようとしています。コードはエラーなしで正常に実行されます。しかし、それは電子メールを送信しません。コンソールにこのメッセージが表示されます。python webapp2からメールを送信するGoogle App Engine
You are not currently sending out real email.
If you have sendmail installed you can use it by using the
server with --enable_sendmail
Googleが提供するサンプルコードは次のとおりです。
デフォルトでdev_appserverが本当のメールを送信していないためだmessage = mail.EmailMessage(
sender="[email protected]",
subject="Your account has been approved")
message.to = "ABC <[email protected]>"
message.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
"""
message.send()