SendDateTime Property
Applies To
Mailer object.
Description
Returns the date and time that the mailer was sent. For this property to be valid, the mailer must have already been sent. Available only in Microsoft Word for the Macintosh, with the PowerTalk mail system extension installed. Read-only Date.
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