ReplyAll Method (Message Object)

ReplyAll Method (Message Object)

The ReplyAll method returns a new Message object that that can be used to reply to the sender and all recipients of the current message.

Syntax

Set objReplyMessage = objMessage.ReplyAll( )

objReplyMessage

On successful return, contains the new Message object ready for replying.

objMessage

Required. This Message object.

Remarks

The ReplyAll method copies the current message to the new message and populates its Recipients collection appropriately from the original message's Recipients and Sender properties. In keeping with response conventions, ReplyAll does not copy any Attachment objects to the new message.

ReplyAll does not save any changes or send any e-mail. You must call Update on the new Message object to save it in the messaging system, or Send to initiate transmission to the recipients.

The current implementation of the ReplyAll method does not copy the Text property to the new message.

See Also

Concepts

Message Object