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.
Discuss This Question: 1  Reply
In MIME HTML inline look here mail lotus script and images not visible in some web mailbox
Hope this helps.