51Testing软件测试论坛

标题: Python实现报表自动化和自动发送到目的邮箱(2) [打印本页]

作者: lsekfe    时间: 2022-7-8 10:12
标题: Python实现报表自动化和自动发送到目的邮箱(2)
第三步:自动发送邮件
  做出来的一系列报表一般都要发给别人看的,对于一些每天需要发送到指定邮箱或者需要发送多封报表的可以使用[url=]Python[/url]来自动发送邮箱。
  在Python发送邮件主要借助到smtplib和email这个两个模块。
  ·smtplib:主要用来建立和断开与服务器连接的工作。
  · email:主要用来设置一些些与邮件本身相关的内容。
  不同种类的邮箱服务器连接地址不一样,大家根据自己平常使用的邮箱设置相应的服务器进行连接。这里博主用网易邮箱展示:
  首先需要开启POP3/SMTP/IMAP服务:
[attach]138864[/attach]
之后便可以根据授权码使用python登入了。
  1. import smtplib
  2.   from email import encoders
  3.   from email.header import Header
  4.   from email.utils import parseaddr,formataddr
  5.   from email.mime.application import MIMEApplication
  6.   from email.mime.multipart import MIMEMultipart
  7.   from email.mime.text import MIMEText
  8.   #发件人邮箱
  9.   asender="fanstuck@163.com"
  10.   #收件人邮箱
  11.   areceiver="1079944650@qq.com"
  12.   #抄送人邮箱
  13.   acc="fanstuck@163.com"
  14.   #邮箱主题
  15.   asubject="谢谢关注"
  16.   #发件人地址
  17.   from_addr="fanstuck@163.com"
  18.   #邮箱授权码
  19.   password="####"
  20.   #邮件设置
  21.   msg=MIMEMultipart()
  22.   msg['Subject']=asubject
  23.   msg['to']=areceiver
  24.   msg['Cc']=acc
  25.   msg['from']="fanstuck"
  26.   #邮件正文
  27.   body="你好,欢迎关注fanstuck,您的关注就是我继续创作的动力!"
  28.   msg.attach(MIMEText(body,'plain','utf-8'))
  29.   #添加附件
  30.   htmlFile = 'C:/Users/10799/problem.html'
  31.   html = MIMEApplication(open(htmlFile , 'rb').read())
  32.   html.add_header('Content-Disposition', 'attachment', filename='html')
  33.   msg.attach(html)
  34.   #设置邮箱服务器地址和接口
  35.   smtp_server="smtp.163.com"
  36.   server = smtplib.SMTP(smtp_server,25)
  37.   server.set_debuglevel(1)
  38.   #登录邮箱
  39.   server.login(from_addr,password)
  40.   #发生邮箱
  41.   server.sendmail(from_addr,areceiver.split(',')+acc.split(','),msg.as_string())
  42.   #断开服务器连接
  43.   server.quit()
复制代码
运行[url=]测试[/url]:  
[attach]138865[/attach]
下载文件:
[attach]138866[/attach]
完全没问题!!!






欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2