I'm using GemBox.Email and GemBox.Document to convert emails to PDF.
This is my code:
static void Main()
{
MailMessage message = MailMessage.Load("input.eml");
DocumentModel document = new DocumentModel();
if (!string.IsNullOrEmpty(message.BodyHtml))
document.Content.LoadText(message.BodyHtml, LoadOptions.HtmlDefault);
else
document.Content.LoadText(message.BodyText, LoadOptions.TxtDefault);
document.Save("output.pdf");
}
The code works for EML files, but it doesn't for MSG (both MailMessage.BodyHtml
and MailMessage.BodyText
) are empty.
How can I make this work for MSG as well?
The problem occurs with specific MSG files that don't have HTML content within an RTF body, instead, they have a raw RTF body.
The
MailMessage
class currently doesn't expose API for the RTF body (only plain and HTML body). Nevertheless, you can retrieve it as anAttachment
named "Body.rtf".Also as an FYI, another problem you have is that the images from the email's HTML body are not inlined, and thus, you'll lose them when exporting to PDF.
Anyway, try using the following:
For more information (like how to add email headers and attachments to output PDF), check the Convert Email to PDF examples.