Appengine发送邮件 - 邮件不发送

时间:2017-03-06 13:44:44

标签: python-2.7 email google-app-engine

我正在尝试在提交表单后从我的应用发送电子邮件。

我在main.py中使用了这个导入

from google.appengine.api import mail

这是我的请求处理程序

#handle form data
#construct Consult
consult.put()
sender_address = "no-reply@*******.com.au"
mail.send_mail(sender=sender_address,
  to="jwc-testadmin@******.com.au",
  subject="***** - New Consult",
  body="""Dear JW Consultant, test.""")
self.redirect('/consults')

当我点击提交邮件时不发送。 Consult put()和重定向工作正常。

1 个答案:

答案 0 :(得分:1)

当您在开发服务器上运行时,以下信息是相关的:

  

The local development server can send email for calls to the App Engine mail service using either an SMTP server or a local installation of Sendmail.

您安装了Sendmail还是使用的是SMTP服务器?