Forum Discussion
outbound email
Yes you can track it through Queue Viewer, it is an Microsoft Management Console (MMC)
https://docs.microsoft.com/en-us/exchange/mail-flow/queues/queue-viewer?view=exchserver-2019
For Tracking you can use below scripts
To search the message tracking log entries for specific events, use the following syntax.
Get-MessageTrackingLog [-Server <ServerIdentity> ] [-ResultSize <Integer> | Unlimited] [-Start <DateTime>] [-End <DateTime>] [-EventId <EventId>] [-InternalMessageId <InternalMessageId>] [-MessageId <MessageId>] [-MessageSubject <Subject>] [-Recipients <RecipientAddress1,RecipientAddress2...>] [-Reference <Reference>] [-Sender <SenderAddress>]
To view the most recent message tracking log entries on the server, run the following command:
Get-MessageTrackingLog
This example searches the message tracking logs on the local server for all entries from 3/28/2015 8:00 AM to 3/28/2015 5:00 PM for all FAIL events where the message sender was pat@contoso.com.
Get-MessageTrackingLog -ResultSize Unlimited -Start "3/28/2015 8:00AM" -End "3/28/2015 5:00PM" -EventId "Fail" -Sender "pat@contoso.com"
Use the Exchange Management Shell to control the output of a message tracking log search
Use the following syntax.
Get-MessageTrackingLog <SearchFilters> | <Format-Table | Format-List> [<FieldNames>] [<OutputFileOptions>]
This example searches the message tracking logs using the following search criteria:
- Return results for the first 1,000 Send events.
- Display the results in the list format.
- Display only those field names that begin with Send or Recipient.
- Write the output to a new file named D:\Send Search.txt
Get-MessageTrackingLog -EventId Send | Format-List Send*,Recipient* > "D:\Send Search.txt"
Let me know