我在谷歌应用引擎上发送电子邮件时遇到问题。我遇到了几个新的跨栏,非常感谢你的帮助。
我从
the tutorial
对于“sender”字段,我将创建应用程序时使用的gmail帐户放在下面:
mail.send_mail(sender="owners_email_acco...@gmail.com",
to="xxxx...@gmail.com",
subject="test email from app",
body="hello")
当我尝试这个时,我得到了错误:
InvalidSenderError: Unauthorized sender
但是电子邮件
sender="owners_email_acco...@gmail.com",
是我用来登录应用程序的电子邮件;这是我用来创建应用程序的电子邮件。
教程说:
The email address of the sender, the From address. The sender address must be one of the following types: The address of a registered administrator for the application. You can add administrators to an application using the Administration Console.
所以我用来创建应用程序的电子邮件应该作为发件人。我做错什么了?谢谢。
(我问
same question
在GAE组,但没有回复)