#发邮件的库
import smtplib
#邮件文本
from email.mime.text import MIMEText
import time
#SMTP服务器
SMTPServer = "smtp.126.com"
#发邮件的地址
Sender = "****@126.com"
#发送者邮箱的授权密码
password = "****"
#设置发送的内容
message = "nv shenjie happy"
#转换为邮件文本
msg = MIMEText(message)
#标题
msg["Subject"] = "来自盖天的问候!"
#发送者
msg["From"] = Sender
#创建SMTP服务器
mailServer = smtplib.SMTP(SMTPServer,25)
#登陆邮箱
mailServer.login(Sender,password)
#发送邮箱
mailServer.sendmail(Sender,["039@qq.com","2625@qq.com","2673"],msg.as_string())
time.sleep(1)
##退出邮箱
mailServer.quit()
如果想增加数量可以用循环
Python发邮件
最新推荐文章于 2020-04-20 14:31:52 发布