Hello,
We’re using AsposeEmail to load eml files and format them as mhtml.
In some cases, inline images are detected as attachments and the header in the mhtml is incorecct.
This problem can be reproduced with this code and the attachment sample :
using (var message = MailMessage.Load(@“C:\test\test.eml”, new EmlLoadOptions()))
{
Console.WriteLine(“Attachments count : {0}”, message.Attachments.Count);
// Returns 2 instead of 1
}
Thanks and best regards