I'm using the MailSystem.NET IMAP functionality to retrieve E-mail.
Connecting and login succeed and I see there are 4 messages on the server. When I retrieve the messages I can read the subject, from/to etc. However, when I read the Email body only a fraction of the body is displayed.
Message msg = inbox.Fetch.MessageObject(i);
Console.WriteLine(msg.BodyHtml.Text);
The code above will display:
<!DOCTYPE
How can I get the complete content of the E-mail body? (Also asked on CodePlex, but there is not a lot of activity there).
Regards,
Michel
BodyPlainText(if there is any)? - František Žiačik