Sender Property
Applies To
Mailer object.
Description
Returns the name of the user who sent the document mailer. Available only in Microsoft Word for the Macintosh, with the PowerTalk mail system extension installed. Read-only String.
Example
This example displays the name of the user who sent the active document, plus the date and time it was sent.
With ActiveDocument
If .HasMailer Then
MsgBox "This document was sent by " & _
.Mailer.Sender & " at " & _
Format(.Mailer.SendDateTime, "General Date")
End If
End With