CreateReplyMessage (NotesDocument - LotusScript®)

Creates a new document that is formatted as a reply to the current document.

Defined in

NotesDocument

Syntax

Set replyNotesDocument = notesDocument .CreateReplyMessage( all )

Parameters

all

Boolean. If True, the new document recipient list contains all the recipients of the original. If False, the new document recipient list contains only the sender of the original.

Return value

replyNotesDocument

A reply to the current document.

Usage

The new document does not contain a Subject item. If you want one, the script must explicitly add it to the document.

The new document does not get automatically mailed. If you want to mail it, the script must explicitly call the Send method.

Example