码迷,mamicode.com
首页 > 编程语言 > 详细

利用Python自动发送邮件

时间:2016-05-11 15:17:31      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding:utf-8 -*-
from email.mime.text import MIMEText
from email.header import Header
import smtplib

def send_mail(file_new):
f = open(file_new,‘rb‘)
mail_body = f.read()
f.close()

msg = MIMEText(mail_body,‘html‘,‘utf-8‘) 
msg[‘Subject‘] = Header("自动化测试报告",‘utf-8‘)

smtp = smtplib.SMTP()
smtp.connect("smtp.126.com")
smtp.login("username@126.com",‘password‘)
smtp.sendmail("username@126.com","receive@126.com",msg.as_string())
smtp.quit()
print "email has send out !"

send_mail("D:\\123456.txt")

注:以上代码可以实现自动发送邮件,不过在发送中文或者中英混合的文件时,会出现乱码的情况。对于主题、回复人涉及汉字的,要用Header("xxxx","utf-8")方式进行编码转换。至于内容,就不要转换成utf-8了。

利用Python自动发送邮件

标签:

原文地址:http://www.cnblogs.com/dvbbs2012/p/5481720.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!