Share via


EmailOptions.HTMLFidelity Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub HTMLEmail()
    Application.EmailOptions _
        .HTMLFidelity = wdEmailHTMLFidelityHigh
End Sub

See Also