EmailSignature Object

Word Developer Reference

Contains information about the e-mail signatures used by Microsoft Word when you create and edit e-mail messages and replies.

Remarks

Use the EmailSignature property to return the EmailSignature object.

This example changes the signatures Word appends to new outgoing e-mail messages and e-mail message replies.

Visual Basic for Applications
  With Application.EmailOptions.EmailSignature
    .NewMessageSignature = "Signature1"
    .ReplyMessageSignature = "Reply2"
End With
Bb179094.vs_note(en-us,office.12).gif  Note
There is no EmailSignatures collection; each EmailOptions object contains only one EmailSignature object.

See Also