EmailSignature.ReplyMessageSignature Property

Word Developer Reference

Returns or sets the signature that Microsoft Word appends to e-mail message replies. Read/write String.

Syntax

expression.ReplyMessageSignature

expression   An expression that returns an EmailSignature object.

Remarks

When setting this property, you must use the name of an e-mail signature that you have created in the E-mail Options dialog box, available from the General tab of the Options dialog box (Tools menu).

Example

This example changes the signature Word appends to e-mail message replies.

Visual Basic for Applications
  With Application.EmailOptions.EmailSignature
    .ReplyMessageSignature = "Reply2"
End With

See Also