/ Forums / Advansys Formativ / Creating Solutions with Formativ / Email tracking / Reply To: Email tracking
February 29, 2004 at 2:49 pm
#6919
You can use the ItemSaveInfo() API to obtain a plain text file that corresponds to the message properties page, as shown in the example below:
call GroupWise.ItemSaveInfo(iMessageID, iFileName, fmtAnsitext)
Notes on this example:
- iMessageID is a variable initialized to the ID of the relevant Message object.
- iFileName is a variable initialized to an appropriate full path and file name. You might find that Utilities.TempFiles provides a useful location (ie. path name) for your purposes.
I hope this helps.
Advansys Support