Unable to get Transfer Encoding Type in method ToAttachment method in class MessageContent.
This results in saved attachments with the wrong encoding.
headers can also contain the escape sequence \"
Fix:
var line = tmp[i].Trim('\t').Trim('\"').Trim().TrimEnd(';');
if (string.IsNullOrWhiteSpace(line)) continue;
W
This results in saved attachments with the wrong encoding.
headers can also contain the escape sequence \"
Fix:
var line = tmp[i].Trim('\t').Trim('\"').Trim().TrimEnd(';');
if (string.IsNullOrWhiteSpace(line)) continue;
W