EmailOptions object (Word)
Contains global application-level attributes used by Microsoft Word when you create and edit email messages and replies.
Remarks
Use the EmailOptions property to return the EmailOptions object.
This example changes the font color of the default style used to compose new email messages.
Application.EmailOptions.ComposeStyle.Font.Color = _
wdColorBrightGreen
This example sets Word to mark comments in email messages with the initials "WK."
Application.EmailOptions.MarkCommentsWith = "WK"
Application.EmailOptions.MarkComments = True
This example changes the signatures Word appends to new outgoing email messages and email message replies.
With Application.EmailOptions.EmailSignature
.NewMessageSignature = "Signature1"
.ReplyMessageSignature = "Reply2"
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.