Python+selenium 邮件自动发送(3)

邮件自动发送–发送带附件的邮件

想法:在测试的过程中,发送邮件的时候除了发送正文和标题之外,还需要发送图片或者文件想要的附件

思路:python提供了smtplib发送邮件的库,email构造邮件的库,既可以发送正文,也可以发送附件,用到的具体的包是:
from email.mime.multipart import MIMEMultipart

构造附件的方法如下:
#读取到D:1.txt的文件的所有内容,然后装载到定义的变量att中
send_file=open(r’D:\1.txt’,‘rb’).read()
att=MIMEText(send_file,‘base64’,‘utf-8’)
att[‘Content-Type’]=‘application/octet-stream’
att[‘Content-Disposition’]=‘attachment;filename=“1.txt”’

完整的发送邮件带附件的代码如下:

#coding=utf-8
import smtplib
from email.mime.text import MIMEText
from  email.mime.multipart import MIMEMultipart

smtpserver='smtp.163.com'
user='[email protected]'
password=''

sender='[email protected]'
receive='[email protected]'

content='

自动化测试报告正文

'
subject='selenium 自动化测试' #构造附件 send_file=open(r'D:\1.txt','rb').read() att=MIMEText(send_file,'base64','utf-8') att['Content-Type']='application/octet-stream' att['Content-Disposition']='attachment;filename="1.txt"' #构造邮件内容 magRoot=MIMEMultipart() magRoot.attach(MIMEText(content,'html','utf-8')) magRoot['Subject']=subject magRoot['From']=sender magRoot['To']=receive magRoot.attach(att) #发送邮件 smtp=smtplib.SMTP_SSL(smtpserver,465) #给服务器发送请求 smtp.helo(smtpserver) smtp.ehlo(smtpserver) smtp.login('[email protected]',' ') print "开始发送邮件" smtp.sendmail(sender,receive,magRoot.as_string()) print "邮件发送完成" smtp.quit()

你可能感兴趣的:(python+selenium,自动化测试,python,selenium,邮件自动发送,自动化)