Share via

Shared Mailbox Sent Items Not Saving

jujhar singh 20 Reputation points
2026-04-27T14:09:35.2533333+00:00

We have a shared mailbox with multiple users assigned to it. When a user sends an email from the shared mailbox, a copy of the sent email is saved in their personal Sent Items. However, the email does not appear in the Sent Items folder of the shared mailbox.

Exchange | Hybrid management
Exchange | Hybrid management

The administration of a hybrid deployment that connects on-premises Exchange Server with Exchange Online, enabling seamless integration and centralized control.

0 comments No comments

Answer accepted by question author

Steven-N 25,305 Reputation points Microsoft External Staff Moderator
2026-04-27T14:45:59.0233333+00:00

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.

Was this answer helpful?

1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

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