EmailOptions Object

Application
EmailOptions
Multiple objects

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

Properties | Application Property | AutoFormatAsYouTypeApplyBorders Property | AutoFormatAsYouTypeApplyBulletedLists Property | AutoFormatAsYouTypeApplyClosings Property | AutoFormatAsYouTypeApplyDates Property | AutoFormatAsYouTypeApplyFirstIndents Property | AutoFormatAsYouTypeApplyHeadings Property | AutoFormatAsYouTypeApplyNumberedLists Property | AutoFormatAsYouTypeApplyTables Property | AutoFormatAsYouTypeAutoLetterWizard Property | AutoFormatAsYouTypeDefineStyles Property | AutoFormatAsYouTypeDeleteAutoSpaces Property | AutoFormatAsYouTypeFormatListItemBeginning Property | AutoFormatAsYouTypeInsertClosings Property | AutoFormatAsYouTypeInsertOvers Property | AutoFormatAsYouTypeMatchParentheses Property | AutoFormatAsYouTypeReplaceFarEastDashes Property | AutoFormatAsYouTypeReplaceFractions Property | AutoFormatAsYouTypeReplaceHyperlinks Property | AutoFormatAsYouTypeReplaceOrdinals Property | AutoFormatAsYouTypeReplacePlainTextEmphasis Property | AutoFormatAsYouTypeReplaceQuotes Property | AutoFormatAsYouTypeReplaceSymbols Property | ComposeStyle Property | Creator Property | EmailSignature Property | EmbedSmartTag Property | HTMLFidelity Property | MarkComments Property | MarkCommentsWith Property | NewColorOnReply Property | Parent Property | PlainTextStyle Property | RelyOnCSS Property | ReplyStyle Property | TabIndentKey Property | ThemeName Property | UseThemeStyle Property | UseThemeStyleOnReply Property

Parent Objects | Application Object

Child Objects | EmailSignature Object | Style Object

See Also | Email Object | EmailAuthor Object