Hello, @Mohana Reddy,
Welcome to the Microsoft Q&A platform!
From your description, it seems that the lost emails are indeed important to your organization and you have taken some ways to try to recover the mailbox data.
Here are a few additional suggestions that might help resolve the issue:
1.Check the Retention Policies: Ensure that no retention policies are applied that might have caused the emails to be deleted or moved.
2.Run the Get-MailboxStatistics Command: This command can provide information about the mailbox, including the item count and size. It might help identify if the emails are still present but not visible.
Get-MailboxStatistics -Identity "UserMailbox" | Select-Object DisplayName,ItemCount,TotalItemSize
3.Check Litigation Hold or In-Place Hold: If the mailbox was on hold, the items should still be recoverable. You can check this in the Exchange Admin Center or using PowerShell:
Get-Mailbox -Identity <UserMailbox> | FL LitigationHoldEnabled, InPlaceHolds
4.Check for Corruption: Sometimes, mailbox corruption can cause items to disappear. Running a mailbox repair request might help:
New-MailboxRepairRequest -Mailbox "UserMailbox" -CorruptionType ProvisionedFolder,SearchFolder,AggregateCounts,FolderView
5.Restore from Backup: If your organization has mailbox backups, restoring from a recent backup might be the quickest way to recover the missing emails.
Hope the above methods will help you. If it fails, just as NoOneCan said, open a support ticket via the admin center for further analysis may be a best choice for you.
If the answer is helpful, please click on ACCEPT ANSWER as it could help other members of the Microsoft Q&A community who have similar questions and are looking for solutions.
Thank you for your support and understanding.
Best Wishes,
Alex Zhang