0 votes

Can I save an email to PDF?

Thanks

by (350 points)

1 Answer

0 votes

You can save email as an eml file:

IMail email = ...
email.Save("c:\\email.eml");

You can save any attachments (including pdf files) to disk:

byte[] eml = imap.GetMessageByUID(uid);
IMail email = new MailBuilder().CreateFromEml(eml);

foreach (MimeData mime in email.Attachments)
{
    mime.Save("c:\\" + mime.SafeFileName);
}

You can get email body as HTML using IMail.GetBodyAsHtml() or as plain text using IMail.GetBodyAsText().

Converting emails to pdfs is not supported (how should it work if email has attachments for example?).

by (302k points)
...