EmailOptions.HTMLFidelity Property (Word)
Strips HTML tags used for opening HTML files in Word but not required for display. Read/write WdEmailHTMLFidelity.
Syntax
expression .HTMLFidelity
expression Required. A variable that represents an EmailOptions collection.
Example
This example keeps all HTML tags intact when sending e-mail messages.
Sub HTMLEmail()
Application.EmailOptions _
.HTMLFidelity = wdEmailHTMLFidelityHigh
End Sub