The administration of a hybrid deployment that connects on-premises Exchange Server with Exchange Online, enabling seamless integration and centralized control.
Hi jujhar singh
As states in this LINK, when a user sends mail from a shared mailbox using delegated access, Exchange/Outlook will typically save the sent copy in the sender’s own Sent Items (their personal mailbox). Unless you explicitly enable the shared-mailbox sent-items copy settings, the shared mailbox’s Sent Items can remain empty even though messages are being sent successfully.
In this context, You can configure the shared mailbox to keep a copy in its own Sent Items using these mailbox properties:
-
MessageCopyForSentAsEnabled(covers Send As) -
MessageCopyForSendOnBehalfEnabled(covers Send on Behalf)
Run in Exchange Online PowerShell:
# For messages sent using "Send As"
Set-Mailbox "<SharedMailboxUPNOrAlias>" -MessageCopyForSentAsEnabled $true
# For messages sent using "Send on Behalf"
Set-Mailbox "<SharedMailboxUPNOrAlias>" -MessageCopyForSendOnBehalfEnabled $true
Then verify the configuration:
Get-Mailbox "<SharedMailboxUPNOrAlias>" |
Format-List MessageCopyForSentAsEnabled,MessageCopyForSendOnBehalfEnabled
Hope my answer will help you.
Best regards
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.