I am trying to read the emails from NSF file. I want to fetch the inline images from the email body. But I am getting value as a text only
Here is my sample code.
_lotesNotesSession.ConvertMime = false;
nDB = _lotesNotesSession.GetDatabase(null, path, false);
nView = nDB.GetView("$Inbox");
nDoc = nView.GetFirstDocument();
NotesMIMEEntity nMime = nDoc.GetMIMEEntity("Body");
How can I get the HTML Body of the emails?
Regards; Mayuresh.