[Python] 纯文本查看 复制代码 import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.header import Header
# 配置邮箱服务器
smtpserver = "smtp.163.com"
# 用户/密码
user = "admin@163.com"
password = "123456"
# 发送者邮箱
sender = "admin@163.com"
# 接收者邮箱
receiver = [ "123456@163.com" , "234567@qq.com" ]
# 邮件主题
subject = "Python-email3"
msg = MIMEMultipart()
# 多人接收邮件,直接显示下面账号的名字
msg[ 'From' ] = "admin@163.com"
msg[ 'To' ] = "123456@163.com"
msg[ "cc" ] = "234567@qq.com"
msg[ "Subject" ] = Header(subject, "utf-8" )
# 添加正文
msg.attach(MIMEText( '<html><h1>你好!</h1></html>' , "html" , "utf-8" ))
# 添加附件
sendFile = open ( "./测试报告.html" , 'rb' ).read()
att = MIMEText(sendFile, "base64" , "utf-8" )
att.add_header( "Content-Type" , "application/octet-stream" )
att.add_header( "Content-Disposition" , "attachment" , filename = "测试报告.html" )
msg.attach(att)
if __name__ = = '__main__' :
smtp = smtplib.SMTP()
smtp.connect(smtpserver, 25 )
smtp.login(user, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
|