如何用python发送html格式的邮件
1个回答
展开全部
'''
Created on 2014-12-4
@author: Dana、Li
'''
#encoding utf-8
import smtplib
from email.mime.text import MIMEText
mailto_list=["1669852599@qq.com"]
mail_host="smtp.qq.com" #设置服务器
mail_user="1669852599@qq.com" #用户名
mail_pass="xxxxxxx" #口令
mail_postfix="qq.com" #发件箱的后缀
def send_mail(to_list,sub,content): #to_list:收件人;sub:主题;content:邮件内容
me="hello"+"<"+mail_user+"@"+mail_postfix+">" #这里的hello可以任意设置,收到信后,将按照设置显示
msg = MIMEText(content,_subtype='html',_charset='gb2312') #创建一个实例,这里设置为html格式邮件
msg['Subject'] = sub #设置主题
msg['From'] = me
msg['To'] = ";".join(to_list)
try:
s = smtplib.SMTP()
s.connect(mail_host) #连接smtp服务器
s.login(mail_user,mail_pass) #登陆服务器
s.sendmail(me, to_list, msg.as_string()) #发送邮件
s.close()
return True
except (Exception):
print("失败咯...")
return False
if __name__ == '__main__':
if send_mail(mailto_list,"hello","<a href='http://www.cnblogs.com/visec479/'>Dana、Li</a>"):
print ("发送成功")
else:
print ("发送失败")
Created on 2014-12-4
@author: Dana、Li
'''
#encoding utf-8
import smtplib
from email.mime.text import MIMEText
mailto_list=["1669852599@qq.com"]
mail_host="smtp.qq.com" #设置服务器
mail_user="1669852599@qq.com" #用户名
mail_pass="xxxxxxx" #口令
mail_postfix="qq.com" #发件箱的后缀
def send_mail(to_list,sub,content): #to_list:收件人;sub:主题;content:邮件内容
me="hello"+"<"+mail_user+"@"+mail_postfix+">" #这里的hello可以任意设置,收到信后,将按照设置显示
msg = MIMEText(content,_subtype='html',_charset='gb2312') #创建一个实例,这里设置为html格式邮件
msg['Subject'] = sub #设置主题
msg['From'] = me
msg['To'] = ";".join(to_list)
try:
s = smtplib.SMTP()
s.connect(mail_host) #连接smtp服务器
s.login(mail_user,mail_pass) #登陆服务器
s.sendmail(me, to_list, msg.as_string()) #发送邮件
s.close()
return True
except (Exception):
print("失败咯...")
return False
if __name__ == '__main__':
if send_mail(mailto_list,"hello","<a href='http://www.cnblogs.com/visec479/'>Dana、Li</a>"):
print ("发送成功")
else:
print ("发送失败")
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询