Forward CopyTo Line

Using the system “Forward” action, how does the action determine what to fill in the CopyTo line? Can I manipulate the fields on the form being forwarded to use a certain field to fill the CopyTo line? I want to put a name in the CopyTo line.

Subject: Forward CopyTo Line

I don’t think you can do it with the system “Forward” action but you might be able to do something by writing your own custom action.

I’ll save you the effort of trying to do it in @Formula because when testing the following…

@Command([MailForward]);

@SetField(“EnterCopyTo”; “cesinco@yahoo.ca”)

…the forwarded document was not the one that had its CopyTo field modified, but rather the document I was trying to forward. So if you want to do this, you will probably have to resort to LotusScript using NotesUIDocument AFTER that has been opened and then write the value to the field named “EnterCopyTo” (note the name of the field - it is not “CopyTo” when being edited)