python3实现带多张图片、附件的邮件发送


Posted in Python onAugust 10, 2019

本文实例为大家分享了python3实现多张图片附件邮件发送的具体代码,供大家参考,具体内容如下

直接上代码,没有注释!

from email.mime.text import MIMEText
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.header import Header

class Mail(object):
  def __init__(self, host, nickname, username, password, postfix):
    self.host = host
    self.nickname = nickname
    self.username = username
    self.password = password
    self.postfix = postfix

  def send_mail(self, to_list, subject, content, cc_list=[], encode='gbk', is_html=True, images=[]):
    me = str(Header(self.nickname, encode)) + "<" + self.username + "@" + self.postfix + ">"
    msg = MIMEMultipart()
    msg['Subject'] = Header(subject, encode)
    msg['From'] = me
    msg['To'] = ','.join(to_list)
    msg['Cc'] = ','.join(cc_list)
    if is_html:
      mail_msg = ''
      for i in range(len(images)):
        mail_msg += '<p><img src="cid:image%d" height="240" width="320"></p>' % (i+1)
      msg.attach(MIMEText(content + mail_msg, 'html', 'utf-8'))

      for i, img_name in enumerate(images):
        with open(img_name, 'rb') as fp:
          img_data = fp.read()
        msg_image = MIMEImage(img_data)
        msg_image.add_header('Content-ID', '<image%d>' % (i+1))
        msg.attach(msg_image)
        # 将图片作为附件
        # image = MIMEImage(img_data, _subtype='octet-stream')
        # image.add_header('Content-Disposition', 'attachment', filename=images[i])
        # msg.attach(image)
    else:
      msg_content = MIMEText(content, 'plain', encode)
      msg.attach(msg_content)

    try:
      s = smtplib.SMTP()
      # s.set_debuglevel(1)
      s.connect(self.host)
      s.login(self.username, self.password)
      s.sendmail(me, to_list + cc_list, msg.as_string())
      s.quit()
      s.close()
      return True
    except Exception as e:
      print(e)
      return False

def send_mail(to_list, title, content, cc_list=[], encode='utf-8', is_html=True, images=[]):
  content = '<pre>%s</pre>' % content
  m = Mail('smtp.163.com', 'TV-APP TEST', 'tvapp_qa', 'ujlnluutpfespgxz', '163.com')
  m.send_mail(to_list, title, content, cc_list, encode, is_html, images)


if __name__ == '__main__':
  images = [
    '1.png',
    '2.png',
    '3.png',
    '4.png',
  ]
  import time
  title = 'new images %s' % time.strftime('%H:%M:%S')
  content = 'this is attach images %s' % time.time()
  send_mail(['x@163.com'], title, content, ['xx@163.com', 'xxx@163.com'], 'utf-8', True, images)

后记

调试发送多张图片的时候遇到的问题:

用for循环生成的mail_msg,不能直接attach,需要和content一起attach

mail_msg = ''
for i in range(len(images)):
  mail_msg += '<p><img src="cid:image%d" height="240" width="320"></p>' % (i+1)
  msg.attach(MIMEText(**content** + mail_msg, 'html', 'utf-8'))

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
用Python进行基础的函数式编程的教程
Mar 31 Python
Python 详解基本语法_函数_返回值
Jan 22 Python
Python 专题六 局部变量、全局变量global、导入模块变量
Mar 20 Python
python3 实现对图片进行局部切割的方法
Dec 05 Python
Python在图片中插入大量文字并且自动换行
Jan 02 Python
Python实现基于SVM的分类器的方法
Jul 19 Python
python打印n位数“水仙花数”(实例代码)
Dec 25 Python
Python爬虫程序架构和运行流程原理解析
Mar 09 Python
Python requests模块cookie实例解析
Apr 14 Python
python使用matplotlib绘制折线图的示例代码
Sep 22 Python
Python离线安装各种库及pip的方法
Nov 28 Python
如何利用python正则表达式匹配版本信息
Dec 09 Python
python实现邮件自动发送
Aug 10 #Python
python爬取百度贴吧前1000页内容(requests库面向对象思想实现)
Aug 10 #Python
python正则爬取某段子网站前20页段子(request库)过程解析
Aug 10 #Python
Django项目主urls导入应用中views的红线问题解决
Aug 10 #Python
Python中的 sort 和 sorted的用法与区别
Aug 10 #Python
Python测试模块doctest使用解析
Aug 10 #Python
Django发送邮件和itsdangerous模块的配合使用解析
Aug 10 #Python
You might like
怎样辨别一杯好咖啡
2021/03/03 新手入门
php数据库连接
2006/10/09 PHP
php fckeditor 调用的函数
2009/06/21 PHP
PHP 修复未正常关闭的HTML标签实现代码(支持嵌套和就近闭合)
2012/06/07 PHP
thinkPHP的Html模板标签使用方法
2012/11/13 PHP
header导出Excel应用示例
2014/01/24 PHP
php中获取主机名、协议及IP地址的方法
2014/11/18 PHP
PHP生成腾讯云COS接口需要的请求签名
2018/05/20 PHP
thinkPHP+LayUI 流加载实现功能
2019/09/27 PHP
Flash+XML滚动新闻代码 无图片 附源码下载
2007/11/22 Javascript
JavaScript打字小游戏代码
2011/12/26 Javascript
js前台判断开始时间是否小于结束时间
2012/02/23 Javascript
Jquery实现网页跳转或用命令打开指定网页的解决方法
2013/07/09 Javascript
JS中判断null、undefined与NaN的方法
2014/03/26 Javascript
JavaScript常用脚本汇总(二)
2015/03/04 Javascript
探索Vue.js component内容实现
2016/11/03 Javascript
jQuery中Chosen三级联动功能实例代码
2017/03/07 Javascript
python使用reportlab画图示例(含中文汉字)
2013/12/03 Python
python进阶教程之函数参数的多种传递方法
2014/08/30 Python
Python中使用装饰器来优化尾递归的示例
2016/06/18 Python
python购物车程序简单代码
2018/04/18 Python
Python堆排序原理与实现方法详解
2018/05/11 Python
对Python多线程读写文件加锁的实例详解
2019/01/14 Python
python中的print()输出
2019/04/12 Python
set在python里的含义和用法
2019/06/24 Python
python查看文件大小和文件夹内容的方法
2019/07/08 Python
对python中url参数编码与解码的实例详解
2019/07/25 Python
PUMA澳大利亚官方网站:德国运动品牌
2018/10/19 全球购物
高级运动鞋:GREATS
2019/07/19 全球购物
应用心理学个人的求职信
2013/12/08 职场文书
表彰先进的通报
2014/01/31 职场文书
《雾凇》教学反思
2014/02/17 职场文书
舞蹈兴趣小组活动总结
2014/07/07 职场文书
妈妈活动方案
2014/08/15 职场文书
分居协议书范本
2014/11/03 职场文书
Python中json.load()和json.loads()有哪些区别
2021/06/07 Python