这里针对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 发送邮件的资料请关注其它相关文章!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“python 发送邮件的四种方法汇总”评论...
更新日志
2024年12月23日
2024年12月23日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]