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?).