EmailOptions.NewColorOnReply property (Word)

True specifies whether a user needs to choose a new color for reply text when replying to email. Read/write Boolean.

Syntax

expression. NewColorOnReply

expression An expression that returns an 'EmailOptions' object.

Remarks

Use the NewColorOnReply property if you want the reply text of email messages sent from Microsoft Word to be a different color than the original message.

Example

This example checks to see if a user needs to choose a new color for email reply text, and if not, sets the reply font color to blue.

Sub NewColor() 
 With Application.EmailOptions 
 If .NewColorOnReply = False Then 
 .ReplyStyle.Font.Color = wdColorBlue 
 End If 
 End With 
End Sub

See also

EmailOptions Object

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.