根据文档,如果该用户拥有 Gmail 或 Google Apps 帐户,则可以代表当前登录的用户使用 GAE 发送电子邮件:
出于安全考虑,消息的发件人地址必须是应用程序管理员的电子邮件地址或应用程序的任何有效电子邮件接收地址(请参阅接收邮件)。如果用户的帐户是 Gmail 帐户或位于由 Google Apps 管理的域中,则发件人也可以是当前登录用户的 Google 帐户电子邮件地址。
以下代码适用于代表 Gmail 用户而不是 Google Apps 用户发送电子邮件。尝试从 Google Apps 用户发送邮件会导致“未经授权的发件人”错误。
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