python 发邮件
问题描述
用python 发送带zip格式的邮件,邮件发送成功了,但是附件打不开是,代码如下
import smtplibfrom email import encodersfrom email.mime.base import MIMEBasefrom email.mime.multipart import MIMEMultipart
def send_file_zipped(the_file):
themsg = MIMEMultipart()themsg[’Subject’] = the_filethemsg[’to’] = ’xxx’themsg[’from’] = ’xxx’themsg.preamble = the_filemsg = MIMEBase(’application’, ’zip’)zf = open(the_file + ’.zip’, ’rb’)msg.set_payload(zf.read())encoders.encode_base64(msg)msg.add_header(’Content-Disposition’, ’attachment’, filename=the_file + ’.zip’)themsg.attach(msg)themsg = themsg.as_string()try: server = smtplib.SMTP() server.timeout = 30 server.connect(’smtp.exmail.qq.com’) server.login(’xxx’, ’xxx’) server.sendmail(’xxx’, ’xxx’, themsg) server.quit() print ’发送成功’except Exception, e: print str(e)
if name == '__main__':
file = ’20170305’send_file_zipped(file)
找了好多方法,都是这个结果,请教各位是哪里出了问题,邮件附件显示如下:
问题解答
回答1:你可以试一下我写的这个,用的是新浪邮箱发的,在我这儿是无论什么附件格式都可以发
相关文章:
1. javascript - 引入 simditor,但是显示标签,这个怎么解决。2. android - 目前有哪些用Vue.js开发移动App的方案?3. python - 一个关于爬虫的问题4. javascript - 仿着echarts官网的地图做了个例子,但是只显示出来了地点,没有画出飞机动态效果??急5. javascript - js写一个递归把数据结构重组成另外的结构6. python - scrapy获取网页指定内容,后翻到下一页继续,固定循环次数。。问题7. java - android studio的安装路径问题8. javascript - 关于document.documentElement.scrollTop和documen.body.scrollTop的問題9. Spring WS Web服务。使用SAAJ向响应中添加附件-端点无适配器10. java - idea 新建项目提示 already exists in VFS