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')) + '?=')

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

  

posted @ 2019-09-24 15:46  仲青  阅读(1597)  评论(0编辑  收藏  举报