MailMerge.MailAsAttachment property (Word)

True if the merge documents are sent as attachments when the mail merge destination is an email message or a fax. Read/write Boolean.

Syntax

expression. MailAsAttachment

expression An expression that returns a 'MailMerge' object.

Example

This example performs a mail merge operation and sends the merge results as attachments to email messages. The email addresses are stored in the MailAddress merge field.

With Documents("Main.doc").MailMerge 
 .MailAsAttachment = True 
 .Destination = wdSendToEmail 
 .MailSubject = "Special offer" 
 .MailAddressFieldName = "MailAddress" 
 .Execute 
End With

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.