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
Comments: ** Comment from web user: pavel_azanov **
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
Comments: ** Comment from web user: pavel_azanov **
Thank you for the provided fix! I included it. Please update to the latest code from the repository.