Identifying Read status of emails in Exchange Online / Office 365

Copper Contributor

So I cant find an answer to this, Im trying to find a way in powershell to report on read status of mail from a sender.


Id like to reiterate, I want to find a way to report on READ STATUS of mail in Office 365/Exchange Online.


I know I can carry out Get-MessageTrace to get the delivery status and Get-MessageTraceDetail . I know you can use Search-MessageTrackingReport to query on prem solution but I cant for the life of me find a way to do this for a cloud deployment.


According to Microsoft the Search-MessageTrackingReport was replaced with Get-MessageTrace and Get-MessageTraceDetail for online solutions. But as far as I can tell it does not have the same functionality.


ref: Tracking-read-email-messages-exchange-server (shows how to use Search-MessageTrackingReport to identify READ status.

2 Replies

You cannot get this information from the message trace logs, they only cover routing details. If you need the total numbers of read/unread messages for a period, you can find them in the Usage reports in the O365 Admin portal. If you need those details on a per-message basis, you will have to use some EWS based script (example: https://blogs.technet.microsoft.com/santhse/get-readstatus/) or resort to other workarounds such as using the Search-Mailbox cmdlets with the -LogLevel switch.

Yes, I have taken a look at that post and it wasnt particularly helpful. Throwing up multiple bad request responses (400s). But thanks none the less, I've been looking for an answer to this question for a while now and it seems its just not possibe at the moment.