python自动化---各类发送邮件方法及其可能的错误
一、发送文本邮件
可能的问题1.:需要注意,目前QQ邮箱来讲,不能收到完整的邮件,即有些内容不能显示,最好全部使用网易邮箱:
可能的问题2.:在以往的文本邮件发送中,只写了
msg = MIMEText('hello,world,中文邮件测试', 'text', 'utf-8')
msg['Subject'] = Header(subject, 'utf-8')
目前来讲,需要有三个参数,即
# 中文需要参数utf-8
msg = MIMEText('hello,world,中文邮件测试', 'text', 'utf-8')
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com'
文本代码参考(写代码的时候是本人的邮箱,在此已将邮箱更改,复制的时候需要注意)
# -*- coding:utf-8 -*-
import smtplib
from email.mime.text import MIMEText
from email.header import Header # 发送邮箱
sender = 'abc@163.com' # 接收邮箱
receiver = 'def@163.com' # 发送邮件主题
subject = 'Python email testing' # 发送邮箱服务器
smtpserver = 'smtp.163.com' # 发送邮箱用户名/密码
username = "abc@163.com"
password = "" # 中文需要参数utf-8
msg = MIMEText('hello,world,中文邮件测试', 'text', 'utf-8')
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
test_text_mail
二、发送HTML邮件
将参数内容修改即可:如下
# HTML形式的文件内容
msg = MIMEText('<html><h1>你好!!欢迎使用html格式</h1></html>','html','utf-8')
msg['Subject'] = Header(subject, 'utf-8')
# msg['From'] = 'lemon<abc@163.com>'
# msg['To'] = 'def@163.com'
其他内容,与上述代码一致;
三、发送img邮件
# -*- coding:utf-8 -*-
import smtplib
import mimetypes
from email.mime.text import MIMEText
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.header import Header sender = 'abc@163.com'
receiver = 'def@163.com'
subject = 'Python email image testing'
smtpserver = 'smtp.163.com'
username = "abc@163.com"
password = "" # 发送图片附件的邮件
msg = MIMEMultipart()
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' txt = MIMEText("这是中文的邮件内容哦","plain",'utf-8')
msg.attach(txt) file1 = r"E:\images\2.jpg"
image = MIMEImage(open(file1, 'rb').read())
image.add_header('Content-ID', '<image1>')
msg.attach(image) smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
test_img_mail
显示如下:

新内容:
msg = MIMEMultipart()
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' txt = MIMEText("这是中文的邮件内容哦","plain",'utf-8')
msg.attach(txt) file1 = r"E:\images\2.jpg"
image = MIMEImage(open(file1, 'rb').read())
image.add_header('Content-ID', '<image1>')
msg.attach(image)
以上是将img图片以附件格式发送,若让其插在正文中,代码改成
# -*- coding:utf-8 -*-
import smtplib
import mimetypes
from email.mime.text import MIMEText
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.header import Header sender = 'abc@163.com'
receiver = 'def@163.com'
subject = 'Python email image testing2'
smtpserver = 'smtp.163.com'
username = "abc@163.com"
password = "" # 发送图片插在正文中的邮件
msg = MIMEMultipart()
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' msgText = MIMEText('<b>Some <i>HTML</i> text</b> and an image.<br><img src="cid:image1"><br>Nifty!','html')
msg.attach(msgText) file1 = r"E:\images\2.jpg"
image = MIMEImage(open(file1, 'rb').read())
image.add_header('Content-ID', '<image1>')
msg.attach(image) smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
四、发送附件邮件
import mimetypes
from email.mime.text import MIMEText
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.header import Header sender = 'abc@163.com'
receiver = 'def@163.com'
subject = 'Python email attachment testing2'
smtpserver = 'smtp.163.com'
username = "abc@163.com"
password = "" # 发送有附件的邮件
msg = MIMEMultipart('related')
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' # 构造附件
msgatt = MIMEText(open(r"E:\attachment\ API.docx").read(),'base64','utf-8')
msgatt["Content-Type"] = 'application/octet-stream'
msgatt["Content-Disposition"] = 'attachment;filename="API.docx"'
msg.attach(msgatt) smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
五、发送群发邮件
添加多个接收人即可:
receiver = ['def@163.com','lem@hotmail.com','ddd@hotmail.com']
六、发送各种元素都包含的邮件
# -*- coding:utf-8 -*-
import smtplib
import mimetypes
from email.mime.text import MIMEText
from email.mime.image import MIMEImage
from email.mime.multipart import MIMEMultipart
from email.header import Header sender = 'abc@163.com'
receiver = 'def@163.com'
subject = 'Python email many testing2'
smtpserver = 'smtp.163.com'
username = "abc@163.com"
password = "" # 构造消息容器
msg = MIMEMultipart()
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = 'lemon<abc@163.com>'
msg['To'] = 'def@163.com' # 构造文件的本身,用html格式:html = """
<html>
<body>
<h1>你好!!欢迎使用html格式</h1>
</body>
</html>""" # 记录以上信息
part2 = MIMEText(html, 'html','utf-8')
msg.attach(part2) # 构造附件
msgatt = MIMEText(open(r"E:\attachment\API.docx").read(),'base64','utf-8')
msgatt["Content-Type"] = 'application/octet-stream'
msgatt["Content-Disposition"] = 'attachment;filename="API.docx"'
msg.attach(msgatt) smtp = smtplib.SMTP()
smtp.connect('smtp.163.com')
smtp.login(username, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
注意:此处,若将html格式写成
html = """\
Hi!
How are you?
Here is the you wanted.
"""
则邮件无法发送到,故一定要写成规范的格式;
七、基于SSL的邮件
用的少,暂未涉及,可参考文档:http://blog.csdn.net/u012063703/article/details/41009955
后续会跟上:http://www.jb51.net/article/49216.htm
python自动化---各类发送邮件方法及其可能的错误的更多相关文章
- Python自动化必备发送邮件报告脚本详解
#!/usr/bin/python3# -*- coding:UTF-8 -*-import smtplib#smtplib库主要用来连接第三方smtp库,用来发邮件from email.mime.t ...
- Selenium2+python自动化48-登录方法(参数化)
前言 登录这个场景在写用例的时候经常会有,我们可以把登录封装成一个方法,然后把账号和密码参数化,这样以后用的登录的时候,只需调用这个方法就行了 一.登录方法 1.把输入账号.输入密码.点击登录按钮三个 ...
- appium+python自动化24-滑动方法封装(swipe)
swipe介绍 1.查看源码语法,起点和终点四个坐标参数,duration是滑动屏幕持续的时间,时间越短速度越快.默认为None可不填,一般设置500-1000毫秒比较合适. swipe(self, ...
- Selenium2+python自动化48-登录方法(参数化)【转载】
前言 登录这个场景在写用例的时候经常会有,我们可以把登录封装成一个方法,然后把账号和密码参数化,这样以后用的登录的时候,只需调用这个方法就行了 一.登录方法 1.把输入账号.输入密码.点击登录按钮三个 ...
- appium+python自动化24-滑动方法封装(swipe)【转载】
swipe介绍 1.查看源码语法,起点和终点四个坐标参数,duration是滑动屏幕持续的时间,时间越短速度越快.默认为None可不填,一般设置500-1000毫秒比较合适. swipe(self, ...
- Python自动化之clean方法前端调用clean方法的错误
obj.non_field_errors.0 源代码: NON_FIELD_ERRORS = '__all__' 如果在前端写 obj.errors.__all__.0直接就会报错 所以经过尝试得知, ...
- Selenium2+python自动化59-数据驱动(ddt)
前言 在设计用例的时候,有些用例只是参数数据的输入不一样,比如登录这个功能,操作过程但是一样的.如果用例重复去写操作过程会增加代码量,对应这种多组数据的测试用例,可以用数据驱动设计模式,一组数据对应一 ...
- Selenium2+python自动化52-unittest执行顺序
前言 很多初学者在使用unittest框架时候,不清楚用例的执行顺序到底是怎样的.对测试类里面的类和方法分不清楚,不知道什么时候执行,什么时候不执行. 本篇通过最简单案例详细讲解unittest执行顺 ...
- Selenium2+python自动化59-数据驱动(ddt)【转载】
前言 在设计用例的时候,有些用例只是参数数据的输入不一样,比如登录这个功能,操作过程但是一样的.如果用例重复去写操作过程会增加代码量,对应这种多组数据的测试用例,可以用数据驱动设计模式,一组数据对应一 ...
随机推荐
- Django项目在linux上运行
目录 前言 上传 解压 制作启动脚本 这是一篇关于如何在linux下,以后台进程的方式运行服务,命令改改基本上就通用了. 前言 我们在windows本地开发完Django项目后,需要把项目部署到lin ...
- 线性回归和梯度下降代码demo
程序所用文件:https://files.cnblogs.com/files/henuliulei/%E5%9B%9E%E5%BD%92%E5%88%86%E7%B1%BB%E6%95%B0%E6%8 ...
- JS 作用域、原型链
看到一道好题,并附答案 function Foo() { getName = function () { console.log('1'); }; return this; } Foo.getName ...
- JavaScript中数组的集合和映射
集合 集合(set)是在ES6中引入的一种数据结构,用于表示唯一值的集合,所以它不能包含重复值.接 下来这一小节,就让我们具体来看一下这种新的数据结构. Set集合是一种无重复元素的列表,这是这种数据 ...
- 给自己立下一个flag先
恩,今天开始写博客. 其实主要原因是被人甩了,想找个事情让自己忙起来. 主要原因是“男人没钱就是无能”,我是个应届毕业生.所以你懂的. 我不喜欢让心情不爽,所以只能找事情让自己忙起来.所以我开始立Fl ...
- Axure教程:如何使用动态面板?动态面板功能详解
写了几个Axure教程之后发现,可能教程的起点有些高了,过分的去讲效果的实现,而忽略了axure功能以及基础元件的使用,那么从这个教程开始,把这些逐渐的展开讲解. 关于Axure动态面板 动态面板是a ...
- 02_Hibernate持久化配置
一.hibernate对象持久化 Web开发的分层: 为了把数据访问细节和业务逻辑分开, 一般把数据访问作为单独的持久化层.DAO是数据访问对象,使用hibernate后,数据访问对象中操作的API将 ...
- jiba中文分词原理
中文分词就是将一个汉字序列分成一个一个单独的词. 现有的分词算法有三大类: 基于字符串匹配的分词:机械分词方法,它是按照一定的策略将待分析的字符串与一个充分大的机器词典中的词条进行匹配,若在词典中找到 ...
- Django项目:CRM(客户关系管理系统)--85--75PerfectCRM实现CRM扩展权限
# sales_urls.py # ————————47PerfectCRM实现CRM客户报名流程———————— from django.conf.urls import url from bpm. ...
- 19-10-23-K-Aft
没改完题就过来沽博客是不是有点不好…… ZJ一下: 好好好题. T1数组大小…… $$10^7 \rightarrow 60$$ 事实上…… $$7 \times 10^7 \rightarrow 0 ...