Python - 使用GMAIL smtp发送带附件的电子邮件会出错

时间:2015-12-09 16:28:23

标签: python-2.7 gmail

我尝试使用Python和Google的smtp发送电子邮件。在调用它之后我收到一个错误:

   msg = MIMEMultipart('alternative')
TypeError: 'LazyImporter' object is not callable

有没有人有同样的问题?解决方案是什么?

我的代码

Pastebin code

1 个答案:

答案 0 :(得分:1)

只需将导入更改为

即可
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase