Python发邮件示例

Python发邮件示例,第1张

概述Python发邮件示例

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

[[email protected] scripts]# more sendmail.py #!/usr/bin/env python2#Coding: utf-8 import smtplibimport datetimefrom email.mime.text import MIMETextfrom email.header import headerfrom email.mime.multipart import MIMEMultipart    from email.mime.text import MIMEText    from email.mime.image import MIMEImagesender = '[email protected]'receiver = ['[email protected]','[email protected]']subject = 'Pro_Weekly_DBmonitor'smtpserver = 'mail.163.com'username = 'monitor'password = 'secrets'#f = open("/dba/dbaBackup/backup.log","r")#content = f.read()#f.close()content = 'More see the attached file'msg = MIMEMultipart('related')msg['Subject'] = 'Postgresql_MONITOR'--获取时间today=datetime.datetime.Now().strftime('%Y-%m-%d')--要发送的附件file_name='/home/postgres/report/DB_'+str(today)+'.report.txt'att = MIMEText(open(file_name,'rb').read(),'base64','utf-8')att["Content-Type"] = 'application/octet-stream'att["Content-disposition"] = 'attachment; filename="DB_report.txt"' msg.attach(att)--发送所需要调用的smtpsmtp = smtplib.SMTP()smtp.connect('mail.163.com')smtp.login(username,password)smtp.sendmail(sender,receiver,msg.as_string())smtp.quit()

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的Python发邮件示例全部内容,希望文章能够帮你解决Python发邮件示例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1199145.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存