Hi @Sunny Wong ,
Without login credentials of Manager who left company, is it possible to know the Senders of Emails (on certain Subject) to him/her?
Not possible from the Outlook client side as an end-user, but it's possible from the administrator side if your mailbox is hosted on either Exchange server or Exchange Online.
So if you cannot find out the sender by other means, such as asking within your team, you can contact your email administrator for further assistance and, if necessary, provide them with the information below:
-Sample command for On-premises Exchange server like Exchange 2019:
Get-TransportService|Get-MessageTrackingLog -MessageSubject "ReportTest" -Start "12/01/2023 1:00AM" -End "12/13/2023 5:00PM " |select timestamp,sender,recipients,messagesubject |sort-object Timestamp
-Sample command for Exchange Online:
(Require connection to Exchange Online PowerShell beforehand.)
Get-MessageTrace -StartDate (Get-Date).AddDays(-10) -EndDate (Get-Date) | Where {$_.Subject -eq "ReportTest"}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
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.