Python 发邮件例子
Posted benlam
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 发邮件例子相关的知识,希望对你有一定的参考价值。
Python 发邮件例子
例子
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Date : 2019-04-23 16:12:33
# @Author : BenLam
# @Link : https://www.cnblogs.com/BenLam/
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.mime.multipart import MIMEMultipart
#发送邮箱服务器
smtpserver=‘smtp.mxhichina.com‘
#发送邮箱用户/密码
user=‘[email protected]‘
password=‘123456‘
#发送人
sender=‘[email protected]‘
#收件人
receiver=‘[email protected]‘
#主题
subject=‘test E-mail‘
msgRoot=MIMEMultipart(‘test‘)
#正文
content=‘测试邮件地址!‘
cont=MIMEText(content,‘plain‘,‘utf-8‘)
#附件
file=open(‘C:\\\\bug.txt‘,‘rb‘).read()
mark=MIMEText(file,‘base64‘,‘utf-8‘)
mark["Content-Type"]=‘application/octet-stream‘
mark["Content-Disposition"]=‘attachment;filename="bug.txt"‘
msgRoot[‘Subject‘] = subject
msgRoot.attach(cont)
msgRoot.attach(mark)
#开始发送邮件
smtp=smtplib.SMTP()
smtp.connect(smtpserver)
smtp.login(user, password)
smtp.sendmail(sender, receiver, msgRoot.as_string())
smtp.quit()
结果:
以上是关于Python 发邮件例子的主要内容,如果未能解决你的问题,请参考以下文章