这里针对smtplib做了一系列封装,可以完成以下四种场景:
- 发送纯文本的邮件
- 发送html页面的邮件
- 发送带附件文件的邮件
- 发送能展示图片的邮件
以上四种场景,已经做好了二次封装,经测试OK,使用时直接传入对应参数即可,直接上代码
import smtplib from email.mime.text import MIMEText from email.mime.image import MIMEImage from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart class SendEMail(object): """封装发送邮件类""" def __init__(self, host, port, msg_from, pwd): self.msg_from = msg_from self.password = pwd # 邮箱服务器地址和端口 self.smtp_s = smtplib.SMTP_SSL(host=host, port=port) # 发送方邮箱账号和授权码 self.smtp_s.login(user=msg_from, password=pwd) def send_text(self, to_user, content, subject, content_type='plain'): """ 发送文本邮件 :param to_user: 对方邮箱 :param content: 邮件正文 :param subject: 邮件主题 :param content_type: 内容格式:'plain' or 'html' :return: """ msg = MIMEText(content, _subtype=content_type, _charset="utf8") msg["From"] = self.msg_from msg["To"] = to_user msg["subject"] = subject self.smtp_s.send_message(msg, from_addr=self.msg_from, to_addrs=to_user) def send_file(self, to_user, content, subject, reports_path, filename, content_type='plain'): """ 发送带文件的邮件 :param to_user: 对方邮箱 :param content: 邮件正文 :param subject: 邮件主题 :param reports_path: 文件路径 :param filename: 邮件中显示的文件名称 :param content_type: 内容格式 """ file_content = open(reports_path, "rb").read() msg = MIMEMultipart() text_msg = MIMEText(content, _subtype=content_type, _charset="utf8") msg.attach(text_msg) file_msg = MIMEApplication(file_content) file_msg.add_header('content-disposition', 'attachment', filename=filename) msg.attach(file_msg) msg["From"] = self.msg_from msg["To"] = to_user msg["subject"] = subject self.smtp_s.send_message(msg, from_addr=self.msg_from, to_addrs=to_user) def send_img(self, to_user, subject, content, filename, content_type='html'): ''' 发送带图片的邮件 :param to_user: 对方邮箱 :param subject: 邮件主题 :param content: 邮件正文 :param filename: 图片路径 :param content_type: 内容格式 ''' subject = subject msg = MIMEMultipart('related') # Html正文必须包含<img src="/UploadFiles/2021-04-08/cid:imageid">以上就是python 发送邮件的四种方法汇总的详细内容,更多关于python 发送邮件的资料请关注其它相关文章!
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
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月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]