MailMerge.MailFormat property (Word)

Returns a WdMailMergeMailFormat constant that represents the format to use when the mail merge destination is an email 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 email message and formats it using HTML.

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

See also

MailMerge Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.