Below code in doc.GetItemValue("Body") getting only the text without the html structure.i want to get the mail body in html structure.(i am using windows application,to show body of mail i used Web browser control.but i am unable to get body of mail in currect format.)
Dim lotusnotessession As New NotesSession()
lotusnotessession.Initialize(password)
Dim Db As NotesDatabase
Db = lotusnotessession.GetDatabase(server, Sfile, False)
Dim inbox As NotesView = Db.GetView("($Inbox)")
Dim doc As NotesDocument = inbox.GetNthDocument(introw + 1)
doc.GetItemValue("Body")