EmailOptions.PlainTextStyle Property (Word)
Returns the Style object that represents the text attributes for e-mail 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 e-mail messages to Tahoma, size 10.
Sub PlainTxt()
With Application.EmailOptions.PlainTextStyle
.Font.Name = "Tahoma"
.Font.Size = 10
End With
End Sub