圆月山庄资源网 Design By www.vgjia.com
最近用到Python自动发送邮件,主要就是三步,登录邮件、写邮件内容、发送,用到的库是 smtplib 和 email,直接使用pip安装即可
我使用的是QQ邮箱,首先需要设置QQ邮箱POP3/SMTP服务
记住这个授权码,这个授权码就是Python脚本中登录邮箱时的密码,而不是你平时登录邮箱时的那个密码
一.发送普通文本邮件
#发送多种类型的邮件 from email.mime.multipart import MIMEMultipart msg_from = '1508691067@qq.com' # 发送方邮箱 passwd = 'xxx' #就是上面的授权码 to= ['1508691067@qq.com'] #接受方邮箱 #设置邮件内容 #MIMEMultipart类可以放任何内容 msg = MIMEMultipart() conntent="这个是字符串" #把内容加进去 msg.attach(MIMEText(conntent,'plain','utf-8')) #设置邮件主题 msg['Subject']="这个是邮件主题" #发送方信息 msg['From']=msg_from #开始发送 #通过SSL方式发送,服务器地址和端口 s = smtplib.SMTP_SSL("smtp.qq.com", 465) # 登录邮箱 s.login(msg_from, passwd) #开始发送 s.sendmail(msg_from,to,msg.as_string()) print("邮件发送成功")
二.发送携带附件的邮件
import smtplib from email.mime.text import MIMEText #发送多种类型的邮件 from email.mime.multipart import MIMEMultipart msg_from = '1508691067@qq.com' # 发送方邮箱 passwd = 'xxxxx' to= ['1508691067@qq.com'] #接受方邮箱 #设置邮件内容 #MIMEMultipart类可以放任何内容 msg = MIMEMultipart() conntent="这个是字符串" #把内容加进去 msg.attach(MIMEText(conntent,'plain','utf-8')) #添加附件 att1=MIMEText(open('result.xlsx','rb').read(),'base64','utf-8') #打开附件 att1['Content-Type']='application/octet-stream' #设置类型是流媒体格式 att1['Content-Disposition']='attachment;filename=result.xlsx' #设置描述信息 msg.attach(att1) #加入到邮件中 #设置邮件主题 msg['Subject']="这个是邮件主题" #发送方信息 msg['From']=msg_from #开始发送 #通过SSL方式发送,服务器地址和端口 s = smtplib.SMTP_SSL("smtp.qq.com", 465) # 登录邮箱 s.login(msg_from, passwd) #开始发送 s.sendmail(msg_from,to,msg.as_string()) print("邮件发送成功")
三.发送携带图片的附件
同理,可以使用上面的方法也可以发送图片附件
import smtplib from email.mime.text import MIMEText #发送多种类型的邮件 from email.mime.multipart import MIMEMultipart msg_from = '1508691067@qq.com' # 发送方邮箱 passwd = 'xxxxx' to= ['1508691067@qq.com'] #接受方邮箱 #设置邮件内容 #MIMEMultipart类可以放任何内容 msg = MIMEMultipart() conntent="这个是字符串" #把内容加进去 msg.attach(MIMEText(conntent,'plain','utf-8')) #添加附件 att1=MIMEText(open('result.xlsx','rb').read(),'base64','utf-8') #打开附件 att1['Content-Type']='application/octet-stream' #设置类型是流媒体格式 att1['Content-Disposition']='attachment;filename=result.xlsx' #设置描述信息 att2=MIMEText(open('1.jpg','rb').read(),'base64','utf-8') att2['Content-Type']='application/octet-stream' #设置类型是流媒体格式 att2['Content-Disposition']='attachment;filename=1.jpg' #设置描述信息 msg.attach(att1) #加入到邮件中 msg.attach(att2) #设置邮件主题 msg['Subject']="这个是邮件主题" #发送方信息 msg['From']=msg_from #开始发送 #通过SSL方式发送,服务器地址和端口 s = smtplib.SMTP_SSL("smtp.qq.com", 465) # 登录邮箱 s.login(msg_from, passwd) #开始发送 s.sendmail(msg_from,to,msg.as_string()) print("邮件发送成功")
四.发送 html 格式的邮件
import smtplib from email.mime.text import MIMEText #发送多种类型的邮件 from email.mime.multipart import MIMEMultipart import datetime msg_from = '1508691067@qq.com' # 发送方邮箱 passwd = 'xxxxxx' to= ['1508691067@qq.com'] #接受方邮箱 #设置邮件内容 #MIMEMultipart类可以放任何内容 msg = MIMEMultipart() # conntent="这个是字符串" # #把内容加进去 # msg.attach(MIMEText(conntent,'plain','utf-8')) #添加附件 att1=MIMEText(open('result.xlsx','rb').read(),'base64','utf-8') #打开附件 att1['Content-Type']='application/octet-stream' #设置类型是流媒体格式 att1['Content-Disposition']='attachment;filename=result.xlsx' #设置描述信息 att2=MIMEText(open('1.jpg','rb').read(),'base64','utf-8') att2['Content-Type']='application/octet-stream' #设置类型是流媒体格式 att2['Content-Disposition']='attachment;filename=1.jpg' #设置描述信息 msg.attach(att1) #加入到邮件中 msg.attach(att2) now_time = datetime.datetime.now() year = now_time.year month = now_time.month day = now_time.day mytime = str(year) + " 年 " + str(month) + " 月 " + str(day) + " 日 " fayanren="爱因斯坦" zhuchiren="牛顿" #构造HTML content = ''' <html> <body> <h1 align="center">这个是标题,xxxx通知</h1> <p><strong>您好:</strong></p> <blockquote><p><strong>以下内容是本次会议的纪要,请查收!</strong></p></blockquote> <blockquote><p><strong>发言人:{fayanren}</strong></p></blockquote> <blockquote><p><strong>主持人:{zhuchiren}</strong></p></blockquote> <p align="right">{mytime}</p> <body> <html> '''.format(fayanren=fayanren, zhuchiren=zhuchiren, mytime=mytime) msg.attach(MIMEText(content,'html','utf-8')) #设置邮件主题 msg['Subject']="这个是邮件主题" #发送方信息 msg['From']=msg_from #开始发送 #通过SSL方式发送,服务器地址和端口 s = smtplib.SMTP_SSL("smtp.qq.com", 465) # 登录邮箱 s.login(msg_from, passwd) #开始发送 s.sendmail(msg_from,to,msg.as_string()) print("邮件发送成功")
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月02日
2024年11月02日
- 《暗喻幻想》顺风耳作用介绍
- 崔健1985-梦中的倾诉[再版][WAV+CUE]
- 黄子馨《追星Xin的恋人们2》HQ头版限量编号[WAV+CUE]
- 孟庭苇《情人的眼泪》开盘母带[低速原抓WAV+CUE]
- 孙露《谁为我停留HQCD》[低速原抓WAV+CUE][1.1G]
- 孙悦《时光音乐会》纯银CD[低速原抓WAV+CUE][1.1G]
- 任然《渐晚》[FLAC/分轨][72.32MB]
- 英雄联盟新英雄安蓓萨上线了吗 新英雄安蓓萨技能介绍
- 魔兽世界奥杜尔竞速赛什么时候开启 奥杜尔竞速赛开启时间介绍
- 无畏契约CGRS准星代码多少 CGRS准星代码分享一览
- 张靓颖.2012-倾听【少城时代】【WAV+CUE】
- 游鸿明.1999-五月的雪【大宇国际】【WAV+CUE】
- 曹方.2005-遇见我【钛友文化】【WAV+CUE】
- Unity6引擎上线:稳定性提升、CPU性能最高提升4倍
- 人皇Sky今日举行婚礼!电竞传奇步入新篇章