python发送邮件,中文附件下载乱码问题解决方案


解决方法:

import base64

part = MIMEText(open(fileName, 'rb').read(), 'base64', 'UTF-8')
part["Content-Type"] = 'application/octet-stream'
part.add_header('Content-Disposition', 'attachment', filename= '=?utf-8?b?' + base64.b64encode(fileName.encode('UTF-8')) + '?=')

然后,中文显示正常!!!

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM