我注意到php只有一个快速发送电子邮件的功能,我想知道我是否可以用Python做到这一点。我知道Python有一个电子邮件模块,但我知道我需要运行一个SMTP服务器来使用它,而PHP可以使用sendmail。
我最好使用Python 3,对此的任何帮助都将非常感激。
答案 0 :(得分:9)
这是一个full tutorial用于在python中发送电子邮件..看起来他们也有sendmail功能..看看
try:
smtpObj = smtplib.SMTP('localhost')
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"
except SMTPException:
print "Error: unable to send email"