在python中使用smtplib发送邮件。没有错误,没有电子邮件作为输出

时间:2018-08-29 10:57:11

标签: python-3.x smtplib

我已经编写了一个发送文本电子邮件的代码,但是它没有显示任何错误,也没有将电子邮件发送到目标地址。

#!/usr/bin/python

import smtplib

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

message = "hi"

smtpObj = smtplib.SMTP('localhost')
smtpObj.sendmail(sender, receivers, message)         
print "Successfully sent email"

0 个答案:

没有答案