HI
When I use frappe.sendmail in my app, I noticed that the name of attachment shows incorrect if it is non-english like below.
The raw content of email shows like that.
Content-Disposition: attachment; filename=“ä¸æé件-æµè¯.zip”
I tested just use email client to send that attachment which shows correct filename,
the raw content is like that.
Content-disposition: attachment;
filename*=UTF-8’'%E4%B8%AD%E6%96%87%E9%99%84%E4%BB%B6-%E6%B5%8B%E8%AF%95.zip
So my question is how to use sendmail to fix that issue.
Thank you.