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 Word for the Macintosh, with the PowerTalk mail system extension installed. Read-only Boolean.
Example
This example displays the current status of the Received property.
With ActiveDocument
If .HasMailer Then
MsgBox "Received property is " & _
.Mailer.Received
Else
MsgBox "The document has no mailer"
End If
End With