python发邮件需要掌握两个模块的用法,smtplib和email,这俩模块是python自带的,只需import即可使用。smtplib模块主要负责发送邮件,email模块主要负责构造邮件。
smtplib模块主要负责发送邮件:是一个发送邮件的动作,连接邮箱服务器,登录邮箱,发送邮件(有发件人,收信人,邮件内容)。
email模块主要负责构造邮件:指的是邮箱页面显示的一些构造,如发件人,收件人,主题,正文,附件等。
1.smtplib模块
smtplib使用较为简单。以下是最基本的语法。
导入及使用方法如下:
1
2
3
4
5
6
|
import smtplib smtp = smtplib.smtp() smtp.connect( 'smtp.163.com,25' ) smtp.login(username, password) smtp.sendmail(sender, receiver, msg.as_string()) smtp.quit() |
说明:
smtplib.smtp():实例化smtp()
connect(host,port):
host:指定连接的邮箱服务器。常用邮箱的smtp服务器地址如下:
新浪邮箱:smtp.sina.com,新浪vip:smtp.vip.sina.com,搜狐邮箱:smtp.sohu.com,126邮箱:smtp.126.com,139邮箱:smtp.139.com,163网易邮箱:smtp.163.com。
port:指定连接服务器的端口号,默认为25.
login(user,password):
user:登录邮箱的用户名。
password:登录邮箱的密码,像笔者用的是网易邮箱,网易邮箱一般是网页版,需要用到客户端密码,需要在网页版的网易邮箱中设置授权码,该授权码即为客户端密码。
sendmail(from_addr,to_addrs,msg,...):
from_addr:邮件发送者地址
to_addrs:邮件接收者地址。字符串列表['接收地址1','接收地址2','接收地址3',...]或'接收地址'
msg:发送消息:邮件内容。一般是msg.as_string():as_string()是将msg(mimetext对象或者mimemultipart对象)变为str。
quit():用于结束smtp会话。
2.email模块
email模块下有mime包,mime英文全称为“multipurpose internet mail extensions”,即多用途互联网邮件扩展,是目前互联网电子邮件普遍遵循的邮件技术规范。
该mime包下常用的有三个模块:text,image,multpart。
导入方法如下:
1
2
3
|
from email.mime.multipart import mimemultipart from email.mime.text import mimetext from email.mime.image import mimeimage |
构造一个邮件对象就是一个message对象,如果构造一个mimetext对象,就表示一个文本邮件对象,如果构造一个mimeimage对象,就表示一个作为附件的图片,要把多个对象组合起来,就用mimemultipart对象,而mimebase可以表示任何对象。它们的继承关系如下:
1
2
3
4
5
6
7
|
message + - mimebase + - mimemultipart + - mimenonmultipart + - mimemessage + - mimetext + - mimeimage |
2.1 text说明
邮件发送程序为了防止有些邮件阅读软件不能显示处理html格式的数据,通常都会用两类型分别为"text/plain"和"text/html"
构造mimetext对象时,第一个参数是邮件正文,第二个参数是mime的subtype,最后一定要用utf-8编码保证多语言兼容性。
2.1.1添加普通文本
1
2
|
text = "hi!\nhow are you?\nhere is the link you wanted:\nhttp://www.baidu.com" text_plain = mimetext(text, 'plain' , 'utf-8' ) |
查看mimetext属性:可以观察到mimetext,mimeimage和mimemultipart的属性都一样。
1
2
3
|
print dir (text_plain) [ '__contains__' , '__delitem__' , '__doc__' , '__getitem__' , '__init__' , '__len__' , '__module__' , '__setitem__' , '__str__' , '_charset' , '_default_type' , '_get_params_preserve' , '_headers' , '_payload' , '_unixfrom' , 'add_header' , 'as_string' , 'attach' , 'defects' , 'del_param' , 'epilogue' , 'get' , 'get_all' , 'get_boundary' , 'get_charset' , 'get_charsets' , 'get_content_charset' , 'get_content_maintype' , 'get_content_subtype' , 'get_content_type' , 'get_default_type' , 'get_filename' , 'get_param' , 'get_params' , 'get_payload' , 'get_unixfrom' , 'has_key' , 'is_multipart' , 'items' , 'keys' , 'preamble' , 'replace_header' , 'set_boundary' , 'set_charset' , 'set_default_type' , 'set_param' , 'set_payload' , 'set_type' , 'set_unixfrom' , 'values' , 'walk' ] |
2.1.2添加超文本
1
2
3
4
5
6
7
8
9
10
|
html = """ <html> <body> <p> here is the <a href="http://www.baidu.com">link</a> you wanted. </p> </body> </html> """ text_html = mimetext(html, 'html' , 'utf-8' ) |
2.1.3添加附件
1
2
3
4
|
sendfile = open (r 'd:\pythontest\1111.txt' , 'rb' ).read() text_att = mimetext(sendfile, 'base64' , 'utf-8' ) text_att[ "content-type" ] = 'application/octet-stream' text_att[ "content-disposition" ] = 'attachment; filename="显示的名字.txt"' |
2.2 image说明
添加图片:
1
2
3
|
sendimagefile = open (r 'd:\pythontest\testimage.png' , 'rb' ).read() image = mimeimage(sendimagefile) image.add_header( 'content-id' , '<image1>' ) |
查看mimeimage属性:
1
2
3
|
print dir (image) [ '__contains__' , '__delitem__' , '__doc__' , '__getitem__' , '__init__' , '__len__' , '__module__' , '__setitem__' , '__str__' , '_charset' , '_default_type' , '_get_params_preserve' , '_headers' , '_payload' , '_unixfrom' , 'add_header' , 'as_string' , 'attach' , 'defects' , 'del_param' , 'epilogue' , 'get' , 'get_all' , 'get_boundary' , 'get_charset' , 'get_charsets' , 'get_content_charset' , 'get_content_maintype' , 'get_content_subtype' , 'get_content_type' , 'get_default_type' , 'get_filename' , 'get_param' , 'get_params' , 'get_payload' , 'get_unixfrom' , 'has_key' , 'is_multipart' , 'items' , 'keys' , 'preamble' , 'replace_header' , 'set_boundary' , 'set_charset' , 'set_default_type' , 'set_param' , 'set_payload' , 'set_type' , 'set_unixfrom' , 'values' , 'walk' ] |
2.3 multpart说明
常见的multipart类型有三种:multipart/alternative, multipart/related和multipart/mixed。
邮件类型为"multipart/alternative"的邮件包括纯文本正文(text/plain)和超文本正文(text/html)。
邮件类型为"multipart/related"的邮件正文中包括图片,声音等内嵌资源。
邮件类型为"multipart/mixed"的邮件包含附件。向上兼容,如果一个邮件有纯文本正文,超文本正文,内嵌资源,附件,则选择mixed类型。
msg = mimemultipart('mixed')
我们必须把subject,from,to,date添加到mimetext对象或者mimemultipart对象中,邮件中才会显示主题,发件人,收件人,时间(若无时间,就默认一般为当前时间,该值一般不设置)。
1
2
3
4
5
|
msg = mimemultipart( 'mixed' ) msg[ 'subject' ] = 'python email test' msg[ 'from' ] = 'xxx@163.com <xxx@163.com>' msg[ 'to' ] = 'xxx@126.com' msg[ 'date' ] = '2012-3-16' |
查看mimemultipart属性:
1
2
|
msg = mimemultipart( 'mixed' ) print dir (msg) |
结果:
['__contains__', '__delitem__', '__doc__', '__getitem__', '__init__', '__len__', '__module__', '__setitem__', '__str__', '_charset', '_default_type', '_get_params_preserve', '_headers', '_payload', '_unixfrom', 'add_header', 'as_string', 'attach', 'defects', 'del_param', 'epilogue', 'get', 'get_all', 'get_boundary', 'get_charset', 'get_charsets', 'get_content_charset', 'get_content_maintype', 'get_content_subtype', 'get_content_type', 'get_default_type', 'get_filename', 'get_param', 'get_params', 'get_payload', 'get_unixfrom', 'has_key', 'is_multipart', 'items', 'keys', 'preamble', 'replace_header', 'set_boundary', 'set_charset', 'set_default_type', 'set_param', 'set_payload', 'set_type', 'set_unixfrom', 'values', 'walk']
说明:
msg.add_header(_name,_value,**_params):添加邮件头字段。
msg.as_string():是将msg(mimetext对象或者mimemultipart对象)变为str,如果只有一个html超文本正文或者plain普通文本正文的话,一般msg的类型可以是mimetext;如果是多个的话,就都添加到mimemultipart,msg类型就变为mimemultipart。
msg.attach(mimetext对象或mimeimage对象):将mimetext对象或mimeimage对象添加到mimemultipart对象中。mimemultipart对象代表邮件本身,mimetext对象或mimeimage对象代表邮件正文。
以上的构造的文本,超文本,附件,图片都何以添加到mimemultipart('mixed')中:
1
2
3
4
|
msg.attach(text_plain) msg.attach(text_html) msg.attach(text_att) msg.attach(image) |
3.文字,html,图片,附件实现实例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#coding: utf-8 import smtplib from email.mime.multipart import mimemultipart from email.mime.text import mimetext from email.mime.image import mimeimage from email.header import header #设置smtplib所需的参数 #下面的发件人,收件人是用于邮件传输的。 smtpserver = 'smtp.163.com' username = 'xxx@163.com' password = 'xxx' sender = 'xxx@163.com' #receiver='xxx@126.com' #收件人为多个收件人 receiver = [ 'xxx@126.com' , 'xxx@126.com' ] subject = 'python email test' #通过header对象编码的文本,包含utf-8编码信息和base64编码信息。以下中文名测试ok #subject = '中文标题' #subject=header(subject, 'utf-8').encode() #构造邮件对象mimemultipart对象 #下面的主题,发件人,收件人,日期是显示在邮件页面上的。 msg = mimemultipart( 'mixed' ) msg[ 'subject' ] = subject msg[ 'from' ] = 'xxx@163.com <xxx@163.com>' #msg['to'] = 'xxx@126.com' #收件人为多个收件人,通过join将列表转换为以;为间隔的字符串 msg[ 'to' ] = ";" .join(receiver) #msg['date']='2012-3-16' #构造文字内容 text = "hi!\nhow are you?\nhere is the link you wanted:\nhttp://www.baidu.com" text_plain = mimetext(text, 'plain' , 'utf-8' ) msg.attach(text_plain) #构造图片链接 sendimagefile = open (r 'd:\pythontest\testimage.png' , 'rb' ).read() image = mimeimage(sendimagefile) image.add_header( 'content-id' , '<image1>' ) image[ "content-disposition" ] = 'attachment; filename="testimage.png"' msg.attach(image) #构造html #发送正文中的图片:由于包含未被许可的信息,网易邮箱定义为垃圾邮件,报554 dt:spm :<p><img src="cid:image1"></p> html = """ <html> <head></head> <body> <p>hi!<br> how are you?<br> here is the <a href="http://www.baidu.com">link</a> you wanted.<br> </p> </body> </html> """ text_html = mimetext(html, 'html' , 'utf-8' ) text_html[ "content-disposition" ] = 'attachment; filename="texthtml.html"' msg.attach(text_html) #构造附件 sendfile = open (r 'd:\pythontest\1111.txt' , 'rb' ).read() text_att = mimetext(sendfile, 'base64' , 'utf-8' ) text_att[ "content-type" ] = 'application/octet-stream' #以下附件可以重命名成aaa.txt #text_att["content-disposition"] = 'attachment; filename="aaa.txt"' #另一种实现方式 text_att.add_header( 'content-disposition' , 'attachment' , filename = 'aaa.txt' ) #以下中文测试不ok #text_att["content-disposition"] = u'attachment; filename="中文附件.txt"'.decode('utf-8') msg.attach(text_att) #发送邮件 smtp = smtplib.smtp() smtp.connect( 'smtp.163.com' ) #我们用set_debuglevel(1)就可以打印出和smtp服务器交互的所有信息。 #smtp.set_debuglevel(1) smtp.login(username, password) smtp.sendmail(sender, receiver, msg.as_string()) smtp.quit() |
说明:
如果大家对add_header的入参有更多的了解(content-disposition,content-type,content-id),希望告诉我,谢谢。
总结
以上所述是小编给大家介绍的python自动发邮件总结及实例说明,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!原文链接:https://www.cnblogs.com/gufengchen/archive/2019/05/31/10954208.html