根据文档,如果该用户拥有Gmail或Google Apps帐户,则可以代表当前登录的用户使用GAE发送电子邮件:
出于安全考虑,邮件的发件人地址必须是 应用程序管理员的电子邮件地址或任何有效的 电子邮件接收应用程序的地址(请参阅接收邮件)。寄件人 也可以是当前用户的Google帐户电子邮件地址 如果用户的帐户是或位于的帐户,则已登录 由Google Apps管理的域名。
以下代码适用于代表Gmail用户发送电子邮件,但不适用于Google Apps用户。尝试从Google Apps用户发送邮件会导致“未经授权的发件人”#39;错误。
current_user = users.get_current_user()
message = mail.EmailMessage()
message.sender = current_user.email()
message.subject = 'subject text'
message.to = 'joe@example.com'
message.body = 'body text'
if message.is_initialized():
try:
message.send()
except Exception, e:
logging.error('Unable to send email update: %s' % e)
else:
logging.error('Email message improperly initialized')
我错过了什么?我应该注意其他依赖吗?
编辑:
完整的堆栈跟踪:
Unauthorized sender
Traceback (most recent call last):
File "/base/data/home/apps/s~core-comps/1.358275951854397525/handler_cs_ticket.py", line 274, in sendEmailCopyToClient
message.send()
File "/base/python_runtime/python_lib/versions/1/google/appengine/api/mail.py", line 900, in send
raise ERROR_MAP[e.application_error](e.error_detail)
InvalidSenderError: Unauthorized sender
答案 0 :(得分:2)
问题似乎是您的应用程序正在使用联合登录,这是一项实验性功能,不适用于代表Google Apps帐户发送。您可以在管理控制台的“应用程序设置”页面上更改此项。
我会将其添加到文档中。