这个代码测试可行
Python发送带附件的Email | 代码回音
Python发送带附件的Email
2010-10-07
前面介绍了使用Python发送Email,不过发送的只是文本,那如何发送附件呢,比如文本、视频等。这里我们需要python提供的email模块。
emial模块用来处理邮件消息,包括MIME和其他基于RFC 2822 的消息文档。使用这些模块来定义邮件的内容,是非常简单的。下面是一些常用的类:
email.mime.multipart. MIMEMultipart: 多个MIME对象的集合
email.mime.audio. MIMEAudio: MIME音频对象。
email.mime.image. MIMEImage: MIME二进制文件对象。
email.mime.text. MIMEText: MIME文本对象
通过上面几个类,我们来看一个发送带附件的Email例子,这样有助于理解,代码来自JGood的python模块学习,你同时也可以参考Send email with attachment(s) in Python这篇文章。
两篇代码都极为类似:
?
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
#coding=gbk
import smtplib, mimetypes
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.image import MIMEImage
msg = MIMEMultipart()
msg['From'] = "from@yeah.net"
msg['To'] = 'to@21cn.com'
msg['Subject'] = 'email for tesing'
#添加邮件内容
txt = MIMEText("这是邮件内容~~")
msg.attach(txt)
#添加二进制附件
fileName = r'e:\PyQt4.rar'
ctype, encoding = mimetypes.guess_type(fileName)
if ctype is None or encoding is not None:
ctype = 'application/octet-stream'
maintype, subtype = ctype.split('/', 1)
att1 = MIMEImage((lambda f: (f.read(), f.close()))(open(fileName, 'rb'))[0], _subtype = subtype)
att1.add_header('Content-Disposition', 'attachment', filename = fileName)
msg.attach(att1)
#发送邮件
smtp = smtplib.SMTP()
mtp.connect('smtp.yeah.net:25')
smtp.login('from', '密码')
smtp.sendmail('from@yeah.net', 'to@21cn.com', msg.as_string())
smtp.quit()
print '邮件发送成功'
你可能还感兴趣的相关文章:
Python如何下载文件
wxPython:如何使用剪贴板
wxPython:动态添加和删除Widget
Matplotlib只保存部分区域图像(Subplot) (2)
Ubuntu安装Matplotlib (3)
Chilkat中的AES加密功能(Python示例) (2)
快速移除Python List中的重复项 (6)
python将十六进制字符转为数字