Cannot save properly the following file to PDF:
https://www.dropbox.com/s/9owfisj9k0pxqns/Great%20deals!.msg?dl=0
This is the output for the operation:
https://www.dropbox.com/s/kew663capo4goyt/Great%20deals!.msg.Pdf?dl=0
As you can see some extraneous html is at the top of the PDF
This is the code to reproduce the problem:
string filename = @"C:\disco\Great deals!.msg";
MailMessage eml = MailMessage.Load(filename);
MemoryStream memoryStream = new MemoryStream();
eml.Save(memoryStream, SaveOptions.DefaultMhtml);
var document = new Document(memoryStream, new Aspose.Words.LoadOptions { LoadFormat = LoadFormat.Mhtml });
document.Save(filename +".Pdf", SaveFormat.Pdf);