Python基于SMTP协议实现发送邮件功能详解


Posted in Python onAugust 14, 2018

本文实例讲述了Python基于SMTP协议实现发送邮件功能。分享给大家供大家参考,具体如下:

SMTP(Simple Mail Transfer Protocol),即简单邮件传输协议,它是一组由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式。Python内置对SMTP的支持,可以发送纯文本邮件、HTML邮件以及带附件的邮件。

Python对SMTP支持有smtplibemail两个模块,email负责构造邮件,smtplib负责发送邮件。

Python创建SMTP语法如下:

import smtplib
smtpObj = mstplib.SMTP(host,port)

创建具有SSL协议的SMTP:

import smtplib
smtpObj = mstplib.SMTP_SSL(host,port)

使用SMTP对象发送邮件:

# from_addr:发送者邮箱
# to_addrs:接收者邮箱,list
# msg:消息体
smtpObj.sendmail(from_addr, to_addrs, msg, mail_options=[],
         rcpt_options=[])

接下来的示例都是以网易邮箱作为邮箱服务器来写的,网易163免费邮箱相关服务器信息如下:

Python基于SMTP协议实现发送邮件功能详解

使用网易邮箱作为发送者邮箱时应注意,邮箱密码并非为邮箱的登录密码,而是客户端授权密码。

发送纯文本邮件

首先,我们需要构造一个消息体:

from email.header import Header
from email.mime.text import MIMEText
# 第一个参数为邮件正文,第二个参数为MINE的subtype,传入‘plain',最终的MINE就是‘text/plain',最后参数为编码
msg = MIMEText('hello email','palin','utf-8')
def _format_addr(s):
  name,addr = parseaddr(s)
  return formataddr((Header(name,'utf-8').encode(),addr.encode('utf-8') if isinstance(addr,unicode) else addr))
# 发送者昵称
msg['From'] = _format_addr('发送者昵称 <%s>'%from_addr) 
# 接收者昵称
msg['To'] = _format_addr('接收者昵称 <%s>'%to_addr)
# 标题
msg['Subject'] = Header('标题','utf-8').encode()

此时就构造了一个简单的消息体。切记,如果未指定标题以及昵称,并且将其格式化编码,有可能会被认为是辣鸡邮件而导致发送失败!!!

以下就是发送纯文本邮件示例的完整代码:

import smtplib
from email.header import Header
from email.mime.text import MIMEText
from email.utils import formataddr,parseaddr
host = 'smtp.163.com'
port = 25
from_addr = 'xxxx@163.com'
from_addr_pwd = 'xxxxxx'
to_addr = 'xxxx@qq.com'
def _format_addr(s):
  name,addr = parseaddr(s)
  return formataddr((Header(name,'utf-8').encode(),addr.encode('utf-8') if isinstance(addr,unicode) else addr))
msg = MIMEText('hello email','palin','utf-8')
msg['From'] = _format_addr('发送者昵称 <%s>'%from_addr) 
msg['To'] = _format_addr('接收者昵称 <%s>'%to_addr)
msg['Subject'] = Header('标题','utf-8').encode()
smtpObj = smtplib.SMTP(host,25)
smtpObj.set_debuglevel(1)
smtpObj.login(sender,password)
smtpObj.sendmail(sender, [receivers], message.as_string())
smtoObj.quit()

值得注意的是,调用sendmail方法时,接收者邮箱为一个list类型,用于群发功能。

发送HTML邮件

如果有发送HTML邮件的需求,此时我们仍需先够着一个MIMEText对象,将html字符串传递进来,如下:

htmlStr = '''
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
  <h1>Hello SMTP</h1>
  <p>点击<a href="https://www.baidu.com" rel="external nofollow" rel="external nofollow" >链接</a></p>
</body>
</html>'''
msg = MIMEText(htmlStr,'html','utf-8')

完整代码如下:

import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formataddr,parseaddr
def _format_addr(s):
  name,addr = parseaddr(s)
  return formataddr((Header(name,'utf-8').encode(),addr.encode('utf-8') if isinstance(addr,unicode) else addr))
server = 'smtp.163.com'
from_addr = 'xxx@163.com'
from_addr_pwd = 'xxxxxx'
to_addr = 'xxx1@qq.com'
htmlStr = '''
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
  <h1>Hello SMTP</h1>
  <p>点击<a href="https://www.baidu.com" rel="external nofollow" rel="external nofollow" >链接</a></p>
</body>
</html>'''
msg = MIMEText(htmlStr,'html','utf-8')
msg['From'] = _format_addr("发送者 <%s>"%from_addr)
msg['To'] = _format_addr("接收者 <%s>"%to_addr)
msg['Subject'] = Header('一个简单的标题','utf-8').encode()
smtpObj = smtplib.SMTP(server,25)
smtpObj.set_debuglevel(1)
smtpObj.login(from_addr,from_addr_pwd)
smtpObj.sendmail(from_addr,[to_addr],msg.as_string())
smtpObj.quit()

发送附件邮件

如果我们有发送附件的需求时,我们该如何改造消息体呢?我们此时可以用MIMEMultipart构造邮件的本身,传递一个MIMEText对象来写入邮件的正文,再用MIMEBase对象存储附件的信息即可,代码如下:

msg = MIMEMultipart()
msg.attach(MIMEText('发送一个附件...','plain','utf-8'))
path = os.path.join(os.getcwd(),'1.png')
with open(path,'rb') as f:
  # 设置附件的MIME
  mime = MIMEBase('image','png',filename='1.png')
  # 加上必要的头信息
  mime.add_header('Content-Disposition','attachment',filename='1.png')
  mime.add_header('Content-ID','<0>')
  mime.add_header('X-Attachment-Id','0')
  # 读取文件内容
  mime.set_payload(f.read())
  # 使用base64编码
  encode_base64(mime)
  msg.attach(mime)

完整代码如下:

import smtplib,os
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart,MIMEBase
from email.header import Header
from email.encoders import encode_base64
from email.utils import formataddr,parseaddr
msg = MIMEMultipart()
msg.attach(MIMEText('发送一个附件...','plain','utf-8'))
def _format_addr(s):
  name,addr = parseaddr(s)
  return formataddr((Header(name,'utf-8').encode(),addr.encode('utf-8') if isinstance(addr,unicode) else addr))
server = 'smtp.163.com'
from_addr = 'xxx@163.com'
from_addr_pwd = 'xxxxxx'
to_addr = 'xxx1@qq.com'
path = os.path.join(os.getcwd(),'1.png')
with open(path,'rb') as f:
  mime = MIMEBase('image','png',filename='1.png')
  mime.add_header('Content-Disposition','attachment',filename='1.png')
  mime.add_header('Content-ID','<0>')
  mime.add_header('X-Attachment-Id','0')
  mime.set_payload(f.read())
  encode_base64(mime)
  msg.attach(mime)
msg['From'] = _format_addr("发送者 <%s>"%from_addr)
msg['To'] = _format_addr("接收者 <%s>"%to_addr)
msg['Subject'] = Header('一个简单的附件邮件','utf-8').encode()
smtpObj = smtplib.SMTP(server,25)
smtpObj.set_debuglevel(1)
smtpObj.login(from_addr,from_addr_pwd)
smtpObj.sendmail(from_addr,[to_addr],msg.as_string())
smtpObj.quit()

发送图片邮件

如果我们需要在一段文本中插入图片作为邮件正文,那么我们该如何实现呢?有人会想用HTML,在里面嵌一个img标签就可以了,但是这样有一个问题,因为img标签是引用一个图片路径的,我们总不能将图片文件也发送过去吧。那么久没有办法了吗,当然有,我们可以结合HTML与附件邮件发送方式来发送图片邮件,首先我们将图片以附件的形式添加进来,再以HTML中img标签引用src='cid:0',就可以将图片引用进来了,如下:

msg = MIMEMultipart()
path = os.path.join(os.getcwd(),'1.png')
with open(path,'rb') as f:
  mime = MIMEBase('image','png',filename='1.png')
  mime.add_header('Content-Disposition','attachment',filename='1.png')
  mime.add_header('Content-ID','<0>')
  mime.add_header('X-Attachment-Id','0')
  mime.set_payload(f.read())
  encode_base64(mime)
  msg.attach(mime)
htmlStr = '''
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
  <h1>图片标题</h1>
  <p>插入一个图片<img src="cid:0"/></p>
</body>
</html>'''
msg.attach(MIMEText(htmlStr,'html','utf-8'))

完整代码如下:

import smtplib,os
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart,MIMEBase
from email.header import Header
from email.encoders import encode_base64
from email.utils import parseaddr,formataddr
server = 'smtp.163.com'
from_addr = 'xxx@163.com'
from_addr_pwd = 'xxxxxx'
to_addr = 'xxx1@qq.com'
def _format_addr(s):
  name,addr = parseaddr(s)
  return formataddr((Header(name,'utf-8').encode(),addr.encode('utf-8') if isinstance(addr,unicode) else addr))
msg = MIMEMultipart()
path = os.path.join(os.getcwd(),'1.png')
with open(path,'rb') as f:
  # 设置附件的MIME
  mime = MIMEBase('image','png',filename='1.png')
  # 加上必要的头信息
  mime.add_header('Content-Disposition','attachment',filename='1.png')
  mime.add_header('Content-ID','<0>')
  mime.add_header('X-Attachment-Id','0')
  # 读取文件内容
  mime.set_payload(f.read())
  # 使用base64编码
  encode_base64(mime)
  msg.attach(mime)
htmlStr = '''
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
  <h1>图片标题</h1>
  <p>插入一个图片<img src="cid:0"/></p>
</body>
</html>'''
msg.attach(MIMEText(htmlStr,'html','utf-8'))
msg['From'] = _format_addr('发送者 <%s>'%from_addr)
msg['To'] = _format_addr('接收者 <%s>'%to_addr)
msg['Subject'] = Header('发送图片邮件','utf-8').encode()
smtpObj = smtplib.SMTP(server,25)
smtpObj.set_debuglevel(1)
smtpObj.login(from_addr,from_addr_pwd)
smtpObj.sendmail(from_addr,[to_addr],msg.as_string())
smtpObj.quit()

如果有多个图片,给它们依次编号,然后引用不同的cid:x即可。

更多关于Python相关内容可查看本站专题:《Python Socket编程技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
详细解析Python当中的数据类型和变量
Apr 25 Python
python正则表达式的使用
Jun 12 Python
Python编程实现蚁群算法详解
Nov 13 Python
Python中turtle作图示例
Nov 15 Python
Python 正则表达式爬虫使用案例解析
Sep 23 Python
基于python实现把图片转换成素描
Nov 13 Python
Python变量作用域LEGB用法解析
Feb 04 Python
django实现将后台model对象转换成json对象并传递给前端jquery
Mar 16 Python
Pycharm学生免费专业版安装教程的方法步骤
Sep 24 Python
Django windows使用Apache实现部署流程解析
Oct 12 Python
Python字符串对齐、删除字符串不需要的内容以及格式化打印字符
Jan 23 Python
Opencv 图片的OCR识别的实战示例
Mar 02 Python
selenium+python实现1688网站验证码图片的截取功能
Aug 14 #Python
django+xadmin+djcelery实现后台管理定时任务
Aug 14 #Python
Python延时操作实现方法示例
Aug 14 #Python
详解PyCharm配置Anaconda的艰难心路历程
Aug 13 #Python
python 实现A*算法的示例代码
Aug 13 #Python
Python绘制KS曲线的实现方法
Aug 13 #Python
Python标准库shutil用法实例详解
Aug 13 #Python
You might like
PHP初学者头疼问题总结
2006/07/08 PHP
菜鸟学PHP之Smarty入门
2007/01/04 PHP
网页游戏开发入门教程三(简单程序应用)
2009/11/02 PHP
php设计模式之单例模式使用示例
2014/01/20 PHP
phpmailer简单发送邮件的方法(附phpmailer源码下载)
2016/06/13 PHP
PHP验证码类ValidateCode解析
2017/01/07 PHP
PHP中PCRE正则解析代码详解
2019/04/26 PHP
JQuery防止退格键网页后退的实现代码
2012/03/23 Javascript
使用js实现雪花飘落效果
2013/08/26 Javascript
js判断两个日期是否相等的方法
2013/09/10 Javascript
第三章之Bootstrap 表格与按钮功能
2016/04/25 Javascript
利用jquery实现验证输入的是否是数字、小数,包含保留几位小数
2016/12/07 Javascript
详解从Node.js的child_process模块来学习父子进程之间的通信
2017/03/27 Javascript
vue实现长图垂直居上 vue实现短图垂直居中
2017/10/18 Javascript
Vue的watch和computed方法的使用及区别介绍
2018/09/06 Javascript
Vue 理解之白话 getter/setter详解
2019/04/16 Javascript
Nodejs + Websocket 指定发送及群聊的实现
2020/01/09 NodeJs
JavaScript队列结构Queue实现过程解析
2020/03/07 Javascript
pandas string转dataframe的方法
2018/04/11 Python
使用PyCharm创建Django项目及基本配置详解
2018/10/24 Python
在python中做正态性检验示例
2019/12/09 Python
python matplotlib画盒图、子图解决坐标轴标签重叠的问题
2020/01/19 Python
20行Python代码实现视频字符化功能
2020/04/13 Python
Numpy中ndim、shape、dtype、astype的用法详解
2020/06/14 Python
openCV提取图像中的矩形区域
2020/07/21 Python
PyCharm+Miniconda3安装配置教程详解
2021/02/16 Python
深入理解css属性的选择对动画性能的影响
2016/04/20 HTML / CSS
阿迪达斯俄罗斯官方商城:adidas俄罗斯
2017/03/08 全球购物
建筑专业毕业生推荐信
2013/11/21 职场文书
社会学专业求职信
2014/02/24 职场文书
情人节活动策划方案
2014/02/27 职场文书
党性教育心得体会
2014/09/03 职场文书
大学生毕业个人总结
2015/02/15 职场文书
因公司原因离职的辞职信范文
2015/05/12 职场文书
护士旷工检讨书
2015/08/15 职场文书
JavaScript 原型与原型链详情
2021/11/02 Javascript