Hi @Dougbert107 ,
Emails sent via standard SMTP protocols (either internal or external) appear to show up just as individual message events to every person on the distribution group.
This is making it incredibly difficult to write some powershell scripts to give us a count of the actual usage of our Distribution Groups given we're not seeing an "Expand" event in the Message Tracking Log.
Does the email address of the distribution list appear in the message tracking log of the message sent "via tandard SMTP protocols"?
Could you please run the command below for one of the messages sent via "standard SMTP protocol" so that we can learn how its message tracking log looks like? Please do remember to remove any private data involved like email address or domain name to protect your personal information:
Get-MessageTrackingLog -MessageSubject <subject>
Furthermore, if you only need to count the messages sent to a particular distribution group, based on my test, you can have a go with the following command:
Get-MessageTrackingLog | ? {$_.RelatedRecipientAddress -like "******@contoso.com"} | measure-object | fl count
Update:
Using the command below instead (Get-TransportService|Get-MessageTrackingLog):
Get-TransportService|Get-MessageTrackingLog -Start <starttime> -End <endtime> -MessageSubject <subject>
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.