前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【python】用SMTP模块发送带附件

【python】用SMTP模块发送带附件

作者头像
py3study
发布2020-01-19 15:55:19
5450
发布2020-01-19 15:55:19
举报
文章被收录于专栏:python3

第一篇博客!参考链接

在书上看了用SMTP模块发邮件,试过之后发现并没有什么用。163邮箱开启了SMTP服务后,登陆了发送的时候却被拒收了。

找了前人的资料,发现被过期的教程害死了。

以下代码有效:

代码语言:javascript
复制
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.image import MIMEImage
#全部为python内置,不需要安装第三方模块
receivers = ["receivers@163.com"]
sender = "sender@163.com"
mail_pass = "password"
mail_subject = "python发送邮件测试"         # 邮件的标题
mail_context = "这是邮件内容"


msg = MIMEMultipart()
msg["From"] = sender  # 发件人
msg["To"] = ";".join(receivers)  # 收件人
msg["Subject"] = mail_subject   # 邮件标题
# 邮件正文
msg.attach(MIMEText(mail_context, 'plain', 'utf-8'))
#图片附件
#不同的目录下要写全文件路径
with open('test.jpg','rb') as picAtt:
    msgImg = MIMEImage(picAtt.read())
    msgImg.add_header('Content-Disposition', 'attachment', filename='你.jpg')
    #msgImg.add_header('Content-ID', '<0>')
    #msgImg.add_header('X-Attachment-Id', '0')
    msg.attach(msgImg)
# 构造附件
att = MIMEText(open('test.txt', "rb").read(), "base64", "utf-8")
att["Content-Type"] = "application/octet-stream"
# 附件名称为中文时的写法
att.add_header("Content-Disposition", "attachment", filename=("gbk", "", "测试结果.txt"))
# 附件名称非中文时的写法
# att["Content-Disposition"] = 'attachment; filename="test.html")'
msg.attach(att)

try:
    # 启动网易SMTP服务,端口465
    smtpObj = smtplib.SMTP_SSL('smtp.163.com', 465)
    # 登陆账号
    smtpObj.login('sender@163.com', 'your_password')
    # 发送
    smtpObj.sendmail(sender, receivers, msg.as_string())
    print('Success!')
    # 退出登录
    smtpObj.quit()
except smtplib.SMTPException as e:
    print(e)

如果不需要附件,删除附件的代码块就行。

注:密码最好不保存在代码中,而是使用时输入

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019/03/15 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档