Hi, could you please help me. We have got a monitoring system at work which monitors some devices, so if something wrong happening with these devices email is sent from MASTER email (Customer Name <blabla@master.com>) to us. I'm trying to get a list of all emails of that monitoring mailbox using PoweShell commandGet-MessageTrackingLog and export them to CSV file. In the end of the day I need CSV file with 3 columns: TimeStamp, MessageSubject and SenderDisplayName! Yes, I need Sender Display Name cause all emails are sent from one MASTER email (Customer Name <blabla@master.com>) and only difference between them is sender Display Name which is cexactly what I need.
This is the code I'm using:
Get-MessageTrackingLog -EventId Receive | Select Timestamp, MessageSubject, Sender | Export-CSV C:\NagiosAlerts.csv–NoTypeInformation
So how can I get sender Display Name(Customer Name) using Get-MessageTrackingLog insted of Sender email (<blabla@master.com>)?