发送email 带附件的Python代码

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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
from email.MIMEText import MIMEText
from email.MIMEMultipart import MIMEMultipart
import smtplib
  
mail_host = 'smtp.126.com'
mail_user = 'xx@126.com'
mail_pwd = 'xx'
mail_to = 'xxzhao@gmail.com'
  
  
msg = MIMEMultipart()
  
att = MIMEText(open('d:\\a.txt','rb').read(),'base64','gb2312')
att["Content-Type"] = 'application/octet-stream'
att["Content-Disposition"] = 'attachment;filename="hello.txt"'
msg.attach(att)
  
message = 'content part'
body = MIMEText(message)
msg.attach(body)
msg['To'] = mail_to
msg['from'] = mail_user
msg['subject'] = 'this is a python test mail'
  
try:
    s = smtplib.SMTP()
    s.connect(mail_host)
    s.login(mail_user,mail_pwd)
  
    s.sendmail(mail_user,mail_to,msg.as_string())
    s.close()
  
    print 'success'
except Exception,e:
    print e