question

Sop-3080 avatar image
0 Votes"
Sop-3080 asked JeffYang-MSFT commented

how to view emails that have been sent from a specific domain to anyone in our orgaziation.

So, I need some help in finding who in our organization has been gotten emails from a Specific domain. Our exchange server version is 2016 and we are in a hybrid configuration.


Thanks,

office-exchange-server-administrationoffice-exchange-server-itpro
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @Safs-3080,
Have you got your issue fixed?
I'm writing to see if my reply is helpful to you.
If you have any update about this issue, please feel free to post back.

0 Votes 0 ·
ManuPhilip avatar image
1 Vote"
ManuPhilip answered

Hope the following reference will help out
track-messages-with-delivery-reports


5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

JeffYang-MSFT avatar image
1 Vote"
JeffYang-MSFT answered

Hi @Safs-3080,

Are those users' mailboxes located in on-premises servers or servers in the cloud?

For users whose mailboxes located in on-premises servers, you could try the command below:

 Get-messagetrackinglog -eventid "RECEIVE" |? {$_.sender -like "*<domain name>*"}

For example, here is my test results in my Exchange 2016:
112316-image.png

For users whose mailboxes located in servers in the cloud, you could try the command below:

 Get-MessageTrace | where{$_.SenderAddress -like "*<domain name>*" -and $_.Status -eq "Delivered"}

112368-1.png

Hope these could help.


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.


image.png (12.2 KiB)
1.png (16.4 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.