首页 > 解决方案 > 使用 Python 脚本发送电子邮件

问题描述

我正在尝试编写一个自动向特定帐户发送电子邮件的功能。当我运行我的代码时,我收到错误消息:

Email could not send
Traceback (most recent call last):
  File "email.py", line 1, in <module>
    import smtplib
  File "C:\Users\User\Anaconda3\lib\smtplib.py", line 47, in <module>
    import email.utils
ModuleNotFoundError: No module named 'email.utils'; 'email' is not a package

这是我写的代码:

import smtplib
import logindetails
def send_email(subject, msg):
    try:
        server = smtplib.SMTP('smtp.gmail.com:587')
        server.ehlo()
        server.starttls()
        server.login(logindetails.EMAIL_ADDRESS, logindetails.PASSWORD)
        message = 'Subject: {}\n\n{}'.format(subject, msg)
        server.sendmail(logindetails.EMAIL_ADDRESS, logindetails.EMAIL_ADDRESS, message)
        server.quit()
        print('Email sent successfully')
    except:
        print('Email could not send')

subject = 'Testing'
msg = 'Hello there how are you today'
send_email(subject, msg)

标签: pythonsmtplib

解决方案


很可能在模块搜索路径(包括当前工作目录)中您自己的模块之一实际上被称为email. 这将导致 Python 取而代之的是选择该模块,并且它将email从标准库中隐藏该模块,从而导致该导入错误。

将该模块重命名为其他名称,您应该会很好。


推荐阅读