Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the subject line used when the mail merge destination is electronic mail. Read/write String.
expression. MailSubject
expression An expression that returns a 'MailMerge' object.
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
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.