Share via


MailMerge.MailFormat Property

Word Developer Reference

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.

Example

This example merges the active document to an e-mail message and formats it using HTML.

Visual Basic for Applications
  Sub MergeDestination()
    With ActiveDocument.MailMerge
        .Destination = wdSendToEmail
        .MailAsAttachment = False
        .MailFormat = wdMailFormatHTML
        .Execute
    End With
End Sub

See Also