相思资源网 Design By www.200059.com
发邮件是一种很常见的操作,本篇主要介绍一下如何用python实现自动发件。
import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.header import Header from email.mime.image import MIMEImage import time mail_host="smtp.126.com" mail_user="xxx@126.com" mail_pass="******"#注意如果邮箱开启了授权码,此处要填写授权码,否则会报smtplib.SMTPAuthenticationError: (535, b'Error: authentication failed') sender="xxx@126.com" receiver = ['邮箱1','邮箱2']#群发邮件 for i in range(n):#自定义循环发多少遍 try: message = MIMEMultipart() message["From"] = Header(sender) message["To"] = ','.join(receiver) message["Subject"] = Header("主题", "utf-8").encode()#主题 message.attach(MIMEText("正文", "plain", "utf-8"))#正文 """ 定附件 """ att = MIMEText(open(r'C:\Users\Administrator\Desktop\1.txt').read(), "base64", "utf-8") att["Content-Type"] = 'application/octet-stream' att.add_header("Content-Disposition", 'attachment', filename="1.txt")#这一步可避免文件不能正常打开 message.attach(att) """ 构造图片(以附件形式上传) """ image = MIMEImage(open(r'C:\Users\Administrator\Desktop\1.jpg', 'rb').read()) image.add_header('Content-ID', '<image1>')#可避免图片不能正常打开 image["Content-Disposition"] = 'attachment; filename="picture.jpg"' message.attach(image) """ 发送邮件 """ smtp = smtplib.SMTP_SSL(host=mail_host) smtp.connect(host=mail_host, port=465) smtp.login(mail_user, mail_pass) smtp.sendmail(sender, message['To'].split(','), message.as_string()) print("在%s第" % ctime(), str(i+1), "封邮件发送") smtp.quit() except smtplib.SMTPException as e: raise e
最终实现
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无python实现邮件循环自动发件功能的评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。