7

我尝试使用我的 python 脚本发送电子邮件,但收到错误消息:

5.7.0 must issue a starttls command first

我正在使用smtplib,这是我的代码:

import smtplib

sender = 'from@fromdomain.com'
receivers = 'to@todomain.com'

message = """From: From Person <from@fromdomain.com>
To: To Person <to@todomain.com>
Subject: SMTP e-mail test

This is a test e-mail message.
"""

try:
    smtpObj = smtplib.SMTP('smtp.gmail.com')
    smtpObj.sendmail(sender, receivers, message)         
    print "Successfully sent email"
except Exception,e:
    print str(e)

如果有人知道如何解决此错误,我将不胜感激。

4

1 回答 1

6

GMail 不会让随机用户通过他们的 SMTP 服务器发送邮件。

正如错误所说,您必须先调用SMTP.starttls并进行身份验证。

于 2013-06-07T10:24:09.270 回答