文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python中如何使用email模块

2023-06-20 18:52

关注

python中如何使用email模块,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

说明

email模块支持发送的邮件内容包括纯文本、HTML内容、图片和附件。

email模块有几种类型,用于不同的邮件内容形式,有MIMEText、MIMEImage和MIMEMultupart。

MIMEText:内容为纯文本和HTML页面。

MIMEImage:内容是图片。

MIMEMultupart:可以包含文本和附件。

实例

#!/usr/bin/python# -*- coding: utf-8 -*-'''@author:freesigefeiCreated on 2016年3月20日Updated on 2016年5月4日'''#------------------------------------------------------------------------------------------------import smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartfrom email.header import Headerimport os,time,re def send_Test_email(mail_to):    '''本模块实现获取最新的测试报告html文件,读取部分报告内容作为邮件正文,将报告作为附件,并发送到指定的邮箱,        参数mail_to代表的是接收邮箱,例如:'xxx@126.com' '''        #发送邮箱    mail_from = 'yyy@sina.com'    #发送邮件主题    mail_subject = 'Automation Test Report'    #发送邮箱服务器    mail_smtpserver = 'smtp.sina.com'    #发送邮箱用户/密码    mail_username = 'yyy@sina.com'    mail_password = 'yyyyyy'     #定义邮件内容,中文需参数‘utf-8’,单字节字符不需要    '''    #发送文件形式的邮件    msg = MIMEText('你好!','text','utf-8')    '''    '''    #发送html形式以正常文本显示在邮件内容中的邮件    msg = MIMEText('<html><h2>你好!</h2></html>','html','utf-8')    '''    '''    #读取html文件内容并发送    f=open(file_new,'rb')    mail_body=f.read()    f.close()    print mail_body    msg=MIMEText(mail_body,_subtype='html',_charset='utf-8')    '''        #创建一个带附件的邮件实例(内容)    msg = MIMEMultipart()    #找到report目录下最新生成的报告文件供后续使用    result_dir = 'D:\\report'    lists=os.listdir(result_dir)    lists.sort(key=lambda fn: os.path.getmtime(result_dir+"\\"+fn) if not               os.path.isdir(result_dir+"\\"+fn) else 0)    print (u'The Latest Test Report is: '+lists[-1])    file_new = os.path.join(result_dir,lists[-1])    #读取最新的测试报告文件获取部分信息来定义邮件的内容    Regex_Theme=re.compile(r'Automation Test Report')    Regex_Content=re.compile(r'<strong>(.*:)</strong>(.*)<')    Report_File=open(file_new,'r')    Mail_Content=[]    for line in Report_File.readlines():        if '<title>Automation Test Report</title>' in line or "<p>" in line:            i=Regex_Theme.findall(line)            j=Regex_Content.findall(line)            if i != []:                Mail_Content.append(i)            if j != []:                Mail_Content.append(j)    Report_File.close()    #将读取到的测试报告的数据以html形式显示为邮件的中文    msgTest=MIMEText('''<html><h2>Test completed,Test results are as follows:</h2></html>'''                     '''<hr />'''                     '''<p><strong>'''+Mail_Content[0][0]+'''</strong></p>'''                     '''<p><strong>'''+Mail_Content[1][0][0]+'''</strong>'''+Mail_Content[1][0][1]+'''</p>'''                     '''<p><strong>'''+Mail_Content[2][0][0]+'''</strong>'''+Mail_Content[2][0][1]+'''</p>'''                     '''<p><strong>'''+Mail_Content[3][0][0]+'''</strong>'''+Mail_Content[3][0][1]+'''</p>'''                     '''<hr />'''                     '''<p>PS: Detailed test results please refer to the attachment</p>'''                     ,'html','utf-8')    msg.attach(msgTest)    #定义邮件的附件    att1 = MIMEText(open(file_new, 'rb').read(), 'base64', 'utf-8')    att1["Content-Type"] = 'application/octet-stream'    att1["Content-Disposition"] ='attachment; filename="Automation test report.html"'#这里的filename指的是附件的名称及类型    msg.attach(att1)    #将邮件的主题等相关信息添加到邮件实例    msg['Subject'] = Header(mail_subject)    msg['From'] = mail_from    msg['To'] = mail_to    msg['date']=time.strftime('%a, %d %b %Y %H:%M:%S %z')    #创建发送服务器实例并将发送服务器添加到实例中    smtp = smtplib.SMTP()    smtp.connect(mail_smtpserver)    '''    #采用ssl加密传输    smtp.ehlo()    smtp.starttls()    smtp.ehlo()    '''    '''    #打印交互的日志信息    #smtp.set_debuglevel(1)    '''    #登录发送邮件服务器并进行邮件的发送    smtp.login(mail_username, mail_password)    smtp.sendmail(mail_from, mail_to, msg.as_string())    print u'Test report sent successfully,Please go to the following email to check the test report :%s' %mail_to    smtp.quit()    #----------------------------------------------------------------------------------------------------if __name__ == "__main__":    send_Test_email('xxx@126.com')

看完上述内容,你们掌握python中如何使用email模块的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯