HasMailer Property
Applies To
Document object.
Description
True if the document has a mailer. Available only in Microsoft Word for the Macintosh, with the PowerTalk mail system extension installed. Read/write Boolean.
Example
This example sets up the Mailer object for the active document and then sends the document.
With ActiveDocument
    .HasMailer = True
    With .Mailer
        .Subject = "Here is the document"
        .ToRecipients = Array("Jean")
        .CCRecipients = Array("Adam", "Bernard")
        .BCCRecipients = Array("Chris")
        .Enclosures = Array("TestFile")
    End With
    .SendMailer
End With