MailMerge.MailFormat Property (Word)
Returns a WdMailMergeMailFormat constant that represents the format to use when the mail merge destination is an e-mail message. Read/write.
Syntax
expression .MailFormat
expression Required. A variable that represents a MailMerge object.
Remarks
The MailFormat property is ignored if the MailAsAttachment property is set to True. Conversely, when MailFormat is set, MailAsAttachment is automatically set to False.
Example
This example merges the active document to an e-mail message and formats it using HTML.
Sub MergeDestination()
With ActiveDocument.MailMerge
.Destination = wdSendToEmail
.MailAsAttachment = False
.MailFormat = wdMailFormatHTML
.Execute
End With
End Sub