EmailOptions Object

EmailOptions 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.

Application
Aa192462.parchild(en-us,office.10).gifEmailOptions
     Aa192462.parchild(en-us,office.10).gif

Contains global application-level attributes used by Microsoft Word when you create and edit e-mail messages and replies.

Using the EmailOptions Object

Use the EmailOptions property to return the EmailOptions object.

This example changes the font color of the default style used to compose new e-mail messages.

  Application.EmailOptions.ComposeStyle.Font.Color = _
    wdColorBrightGreen

This example sets Word to mark comments in e-mail messages with the initials "WK."

  Application.EmailOptions.MarkCommentsWith = "WK"
Application.EmailOptions.MarkComments = True

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