Applies To
Mailer Object.
Description
True if the workbook mailer has been received (if it has been sent by another user to the current user) and the current user has not modified the mailer by using the Reply, ReplyAll, or ForwardMailer methods. PowerTalk requires that mailers be received before they can be forwarded or replied to. Available only in Microsoft Excel for the Apple Macintosh with the PowerTalk mail system extension installed. Read-only.
See Also
BCCRecipients Property, CCRecipients Property, Enclosures Property, ForwardMailer Method, Mailer Property, Reply Method, ReplyAll Method, SendDateTime Property, Sender Property, SendMailer Method, Subject Property, ToRecipients Property.
Example
This example displays the current state of the Received property.
With ActiveWorkbook If .HasMailer Then If .Mailer.Received Then state = "True" Else state = "False" End If MsgBox "Received property is " & state Else MsgBox "The workbook has no mailer" End If End With