import smtplib
SERVER = "localhost"
FROM = "sender@example.com"
TO = ["user@example.com"]
SUBJECT = "Hello!"
TEXT = "This message was sent with Python's smtplib."
server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()
这是错误:
'**The debugged program raised the exception unhandled AttributeError
"'module' object has no attribute 'SMTP'"
File: /home/an/Desktop/email.py, Line: 13**'
答案 0 :(得分:12)
将您的文件重命名为email.py以外的内容。还要删掉任何遗留下来的email.pyc文件。问题解决了。
答案 1 :(得分:5)
这是因为电子邮件是built-in library,是python的标准配置。如果你将程序重命名为其他东西(如上所述),那应该可以解决问题。