Body Field When Forwarding Email

Wonder if anyone can help.

I have a problem whereby when a user forwards an email, the newly composed email seems to store the forwarded message in something other than the body field accessible via the uiDoc.

So for example, I put some code in my querysend event of the memo form, which, via the uiDocument, took the contents of the body field and displayed them, only displayed the newly added content of the email, not the forwarded text.

Does anyone know how I can get access to the rest of the email? I need to be able to do this in the query send event.

Thanks

Subject: Body Field When Forwarding Email

You may need to look at the back end document, and it may not exist until you save the uidoc. Don’t know if this helps - untested at my end.

Call uidoc.Save

Set doc = uidoc.Document

Set item = doc.GetFirstItem(“Body”)

itext$ = item.Text

Subject: RE: Body Field When Forwarding Email

That’s exactly my problem, the back document doesn’t exist until after the doc is saved, which it isn’t at the query send event…