Python 发email 带附件,python发email附件,Python 发emai


Python 发email 带附件

[Python]代码

#encoding=utf-8#byrx.net python 示例代码from email.MIMEText import MIMETextfrom email.MIMEMultipart import MIMEMultipartimport smtplibmail_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_tomsg['from'] = mail_usermsg['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

评论关闭