EmailOptions.PlainTextStyle property (Word)

Returns the Style object that represents the text attributes for email messages that are sent or received using plain text.

Syntax

expression. PlainTextStyle

expression A variable that represents a 'EmailOptions' object.

Example

This example sets the plain text font for email messages to Tahoma, size 10.

Sub PlainTxt() 
 With Application.EmailOptions.PlainTextStyle 
 .Font.Name = "Tahoma" 
 .Font.Size = 10 
 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.