Hi, Your site provides C# code to covert a msg file to pdf here: https://products.aspose.com/email/net/conversion/
// load the MSG file to be converted
var message = Aspose.Email.MailMessage.Load(“My File.msg”);
// save MSG as a PDF
message.Save(“Saved File.pdf”, Aspose.Email.SaveOptions.DefaultPdf);
However, there is no ‘Aspose.Email.SaveOptions.DefaultPdf’ value in the current release.
How can a msg file be converted to a pdf using the current release of Aspose.Email?