The standard ‘get-messagetrackinglog’ PowerShell command does not include the date and time. To have the date and time included in the output you need to use a pipe line and the select command.
For example, the following PowerShell command will list all messages sent using a mailbox. It will include the time and date, EventID, recipients and email subject.
Please Note: Update [email protected] and servername for your environment.
get-messagetrackinglog -sender: [email protected] -server servername | Select timestamp,EventID,recipients,messagesubject