Received Property
Applies To
Mailer object.
Description
True if the workbook mailer has been received (if it's been sent by another user to the current user) and the current user hasn't modified the mailer by using the Reply, ReplyAll, or ForwardMailer method. PowerTalk requires that mailers be received before they can be forwarded or replied to. Available only in Microsoft Excel for the Macintosh, with the PowerTalk mail system extension installed. Read-only Boolean.
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 status 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