EmailSignature Object

EmailSignature Object
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

EmailOptions
Aa192464.parchild(en-us,office.10).gifEmailSignature
Aa192464.space(en-us,office.10).gifAa192464.parchild(en-us,office.10).gifEmailSignatureEntries

Contains information about the e-mail signatures used by Microsoft Word when you create and edit e-mail messages and replies. There is no EmailSignatures collection; each EmailOptions object contains only one EmailSignature object.

Using the EmailSignature Object

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.

  With Application.EmailOptions.EmailSignature
    .NewMessageSignature = "Signature1"
    .ReplyMessageSignature = "Reply2"
End With