黑马王子就是我! 技术认证:系统分析师,网络规划设计师,网络工程师,信息系统监理师,系统集成项目管理师,初级程序员,MCSE,MCDBA,CCNA 目前主攻虚拟化技术,VPN,系统架构,集群和高可用性等。
全部博文(515)
分类: 系统运维
2017-06-16 13:46:18
#!/usr/bin/env python
# -*- coding=utf-8 -*-
import smtplib
from email.header import Header
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
sender = "pywugw@163.com"
rcpt = "pywugw@163.com"
msg = MIMEMultipart('alternatvie')
msg['Subject'] = Header("测试发信","utf-8") #组装信头
msg['From'] = r"%s
msg['To'] = rcpt
html = open('html.tpl').read() #读取HTML模板
html_part = MIMEText(html,'html') #实例化为html部分
html_part.set_charset('utf-8') #设置编码
msg.attach(html_part) #绑定到message里
try:
s = smtplib.SMTP('smtp.163.com') #登录SMTP服务器,发信
s.login('pywugw','*******')
s.sendmail(sender,rcpt,msg.as_string())
except Exception,e:
print e