I need to copy the “Body” field of my document Email to another Database with a field “History” ( Rich-Text Mime) for a specific job.
I use this code for cloning my field:
Set item=oldDoc.GetFirstItem(“body”)
Call doc.CopyItem(item,“history”)
Now…If the original field “body” field isn’t multipart all work correctly…but If I must copy a multipart Body(with attachments, and image embedded) this not work correctly…
There are a workaround for this or I must read and write my email using NotesMimeEntity Class? ( I must realized a function for this…)
Tnx to all