使用smtplib发送电子邮件已不再适用

时间:2015-06-16 17:34:25

标签: python email smtplib

所以昨天我写了一些代码并且它工作得很好,但今天它不再发送电子邮件了。有人可以解释原因吗?

import smtplib

SERVER = 'owa.server.com'
FROM = 'noreply@server.com'
TO = ['person@gmail.com', '1112223344@vtext.com']

name = 'Mr. Man'
SUBJECT = 'Recent Information for: %s' % (name)
TEXT = "Dear " +name+ ",\n\nHello.\n\nSincerely,\nOur Guys Here"

message = """From: %s\r\nTo: %s\r\nSubject: %s\r\n\

%s
""" % (FROM, ", ".join(TO), SUBJECT, TEXT)

server = smtplib.SMTP(SERVER, 587)
server.ehlo()
server.starttls()
server.ehlo
server.login('noreply@server.com', 'password')
server.sendmail(FROM, TO, message)
server.quit()

2 个答案:

答案 0 :(得分:1)

此代码是一个工作代码段。我没有在我的个人Gmail帐户中收到电子邮件,因为gmail将其发送到垃圾邮件文件夹。我检查了它是否适用于我的办公室帐户,它确实很好。

答案 1 :(得分:0)

import smtplib

# Specifying the from and to addresses

fromaddr = 'fromuser@gmail.com'
toaddrs  = 'to@gmail.com'

# Writing the message (this message will appear in the email)

msg = 'Enter you message here'

# Gmail Login

username = 'username'
password = 'password'

# Sending the mail  

server = smtplib.SMTP('smtp.gmail.com:587')
server.starttls()
server.login(username,password)
server.sendmail(fromaddr, toaddrs, msg)
server.quit()

高于标准的smtp发送工作与gmail,
 因此它必须是你的服务器(无论你使用什么)配置有问题。