MailAddressFieldName Property Example
This example merges the document named "Form Letter.doc" with it's attached data document and sends the results to the electronic mail addresses stored in the Email merge field.
With Documents("Form Letter.doc").MailMerge
.MailAddressFieldName = "Email"
.MailSubject = "Amazing offer"
.Destination = wdSendToEmail
.Execute
End With