RATE THIS ANSWER
+1
Click to Vote:
1
0
Hi,
If you don´t want the message as HTML, I guess you could just copy the body item to the new document you are sending instead of copying the mime content as text. For that you´ll need something like:
dim itBody as NotesRichtextItem
set itBoddy = doc.GetFirstItem("Body")
call itBody.CopyItemToDocument(memo,"Body")
in the place of:
Set mime = doc.GetMIMEEntity
If Not(mime Is Nothing) Then
Forall header In mime.HeaderObjects
Call mail.AppendText( walkmime ( mime ) ) 'calls required function walkmime
End Forall
Call doc.CloseMIMEEntities 'allow clean switch to using items
Like this the mail in the spn box should be just like the one the user recived.
Last Answered:
Dec 3 2009 3:10 AM GMT by TiagoBN 
70 pts.