Question:
Hello, I'm using .Net component Chilkat.Email and I've only changed following settings:
e_mail.PreferredCharset = "utf-8" : e_mail.Charset = "utf-8"
When sending email with attachments from Gmail and Yahoo, recipient gets additional empty file, called "noname.txt". Do I have any options to remove this file?
Tools used: VS 2015, .Net Framework 4.6, ChilkatDotNet46-9.5.0-win32
I've resolved my problem by using the method e_mail.SetFromMimeText(). After that, all attachments are being sent as they should, without "noname.txt". However, in order to properly display non-English email, I have to remove my settings for e_mail.Charset, e_mail.PreferredCharset and leave their default values intact.