首先自己参考教程写的没有成功:
import smtplib
import email.mime.multipart
import email.mime.text
msg=email.mime.multipart.MIMEMultipart()
msg['from']='2764896xx@qq.com'
msg['to']='10750490xx@qq.com'
msg['subject']='test'
content="just try"
txt=email.mime.text.MIMEText(content)
msg.attach(txt)
smtp=smtplib
smtp=smtplib.SMTP()
smtp.connect('smtp.qq.com','465')
smtp.login('2764896xx@qq.com','password')//password是在开启qq的smtp服务器时给的口令
smtp.sendmail('2764896xx@qq.com','10750490xx@qq.com',str(msg))
smtp.quit()
然后借用https://www.jianshu.com/p/0f8c5e4e7054哥们的写法成功了:
import smtplib
from email.mime.text import MIMEText
from email.utils import formataddr
my_sender='2764896xx@qq.com' # 发件人邮箱账号
my_pass = 'password' # 发件人邮箱密码(当时申请smtp给的口令)
my_user='10750490xx@qq.com' # 收件人邮箱账号,我这边发送给自己
def mail():
ret=True
try:
msg=MIMEText('哈哈哈哈哈,王xx,收到邮件请回复!','plain','utf-8')
msg['From']=formataddr(["发件人昵称",my_sender]) # 括号里的对应发件人邮箱昵称、发件人邮箱账号
msg['To']=formataddr(["收件人昵称",my_user]) # 括号里的对应收件人邮箱昵称、收件人邮箱账号
msg['Subject']="邮件主题-测试" # 邮件的主题,也可以说是标题
server=smtplib.SMTP_SSL("smtp.qq.com", 465) # 发件人邮箱中的SMTP服务器,端口是465
server.login(my_sender, my_pass) # 括号中对应的是发件人邮箱账号、邮箱密码
server.sendmail(my_sender,[my_user,],msg.as_string()) # 括号中对应的是发件人邮箱账号、收件人邮箱账号、发送邮件
server.quit()# 关闭连接
except Exception:# 如果 try 中的语句没有执行,则会执行下面的 ret=False
ret=False
return ret
ret=mail()
if ret:
print("邮件发送成功")
else:
print("邮件发送失败")
后面尝试了下,把1中的
smtp=smtplib.SMTP()
改为
smtp=smtplib.SMTP_SSL()
则邮件发送成功,具体原因还不知道。
注意:不能将文件名叫做email.py,否则会报 ImportError: No module named mime.text
因为在代码开头使用了 from email.mime.text import MIMEText
如果文件名叫email.py,呵呵,你懂得。。。