MailMerge.MailSubject property (Word)

Returns or sets the subject line used when the mail merge destination is electronic mail. Read/write String.

Syntax

expression. MailSubject

expression An expression that returns a 'MailMerge' object.

Example

This example merges the document named "Offer.doc" with its attached data document. The results are sent to the email addresses stored in the EmailNames merge field, and the subject of the mail message is "Amazing Offer."

With Documents("Offer.doc").MailMerge 
 .MailAddressFieldName = "EmailNames" 
 .MailSubject = "Amazing Offer" 
 .Destination = wdSendToEmail 
 .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.