HasMailer Property

Applies To

Mailer object.

Description

True if the workbook has a mailer. Available only in Microsoft Excel for the Macintosh, with the PowerTalk mail system extension installed. Read/write Boolean.

See Also

Mailer property, MailSystem property, SendMailer method.

Example

This example replies to the sender of the active workbook.

Set original = ActiveWorkbook
If original.HasMailer Then
    original.Reply
    original.Mailer.Subject = "Here's my reply"
    ActiveWorkbook.SendMailer
End If