How to query or get the status of which users has read a particular email I sent to all internal mailbox ?

EnterpriseArchitect 6,041 Reputation points
2022-11-09T12:53:53.897+00:00

Hi All,

Using PowerShell or GraphAPI, is there any way get the status of which users has read a particular email I sent to all internal mailboxes ?

Thank you in advance.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,171 questions
Exchange | Exchange Server | Management
Exchange | Hybrid management
Microsoft Security | Microsoft Graph
{count} votes

2 answers

Sort by: Most helpful
  1. Vasil Michev 119.5K Reputation points MVP Volunteer Moderator
    2022-11-09T16:03:15.253+00:00

    PowerShell does not cover item-level operations, the only thing you can do therein is run Search-Mailbox report, which will feature the "read" column. Via the Graph, you can query the status of the message directly, and you can also use EWS to the same effect. All of these methods give you the current status of the message though, meaning the user can very well have read it, and marked it unread, but you will not be able to tell.

    You can tap into the Audit logs and gather each individual MailItemsAccessed events, but that requires Advanced Audit SKU. On the plus side, it allows you to search directly against the message id:

    Search-UnifiedAuditLog -ResultSize 5 -StartDate (Get-Date).AddDays(-1) -EndDate (Get-Date).AddDays(1) -FreeText "<******@AM0EUR02FT043.eop-EUR02.prod.protection.outlook.com>"  
    
    1 person found this answer helpful.

  2. Jame Xu-MSFT 4,191 Reputation points
    2022-11-10T02:03:23.6+00:00

    Hi @EnterpriseArchitect ,
    Meeting one of the following licensing requirements is sufficient:

    258942-image.png
    refer to:
    https://learn.microsoft.com/en-us/microsoft-365/compliance/auditing-solutions-overview?view=o365-worldwide#audit-standard


    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.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.