EmailOptions.PlainTextStyle (Word)
Gibt das Style -Objekt zurück, das die Textattribute für e-Mail-Nachrichten darstellt, die mit nur-Text gesendet oder empfangen werden.
Sub PlainTxt()
With Application.EmailOptions.PlainTextStyle
.Font.Name = "Tahoma"
.Font.Size = 10
End With
End Sub