Share via

How to Fix Delegates Sending Email As A User Not Being Saved To Sent?

Overwatch Media 6 Reputation points
2026-03-24T17:02:37.3966667+00:00

Is there a way in exchange or using Cloud Shell, for my admin to make it so that that whenever someone sends an email as another user, that email also gets saved into the owners mailbox (and have this applied for all users in the whole organization). So if someone sent an email as or on behalf of me in their outlook desktop app, I want to be able to see that email in my sent folder. Right now, the default for some odd reason is it only gets saved in my delegates email. My admin has no idea how to do this.

This makes no sense in any situation. They are sending as me so I will eventually need to know what it is this person has been sending while I or someone else was gone. What if they ask me about it, i then have to wait to be able to contact the person who sent it as me to confirm what they were and just cant review things right there. Or I'd have to make the customers life a little more involved by having them forwarding the email right back to me. It just doesn't make sense to have this way it is now for any use case.

Exchange Online
Exchange Online

A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.

0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Hani-Ng 9,345 Reputation points Microsoft External Staff Moderator
    2026-03-25T00:18:14.4833333+00:00

    Hi Overwatch Media

    Exchange Online saves these emails only in the Delegate’s Sent Items folder. While there is a setting in the interface to change this one user at a time, your need to apply this to "all users in the whole organization" means the standard Admin Center is not practical. You can ask your Admin to use Exchange Online PowerShell (or Cloud Shell) to apply this setting globally.

    To ensure that emails sent via Send As and Send on Behalf are saved in the Owner's Sent Items folder for every user in the organization, you can run the following bulk command in PowerShell.

    This command selects all user mailboxes and enables the "Copy to Sent Items" feature for both delegation types:

    Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox | Set-Mailbox -MessageCopyForSentAsEnabled $true -MessageCopyForSendOnBehalfEnabled $true
    

    This command applies the setting to all existing users. If new employees are hired in the future, the Admin may need to run this command again or include these flags in their new user creation script.

    To confirm the settings were applied successfully, the Admin can run this command to view the current status:

    Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox | Select-Object Name, MessageCopyForSentAsEnabled, MessageCopyForSendOnBehalfEnabled
    

    User's image

    For your Admin's reference, here are the official Microsoft articles you can see:

    Messages sent from a shared mailbox aren't saved to the Sent Items folder - Exchange | Microsoft Learn

    Automatically save sent items in delegator's mailbox in Exchange Online | Microsoft Learn

    Set-Mailbox (ExchangePowerShell) | Microsoft Learn

    I hope this information helps and provides the necessary references. Please let me know if you have any further questions!


    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.


  2. Q&A Assist
    2026-03-24T17:02:56.2033333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Yes. Configure the mailbox so Exchange automatically stores copies of “Send As”/“Send on behalf” messages in the owner’s Sent Items, and optionally adjust Outlook’s delegate behavior.

    In Exchange Online or on-premises Exchange, use Exchange PowerShell:

    1. Connect to Exchange PowerShell (or Cloud Shell with the Exchange module).
    2. For emails sent as the mailbox owner, run:
         Set-Mailbox <OwnerMailboxAliasOrUPN> -MessageCopyForSentAsEnabled $True
      
    3. For emails sent on behalf of the mailbox owner, run:
         Set-Mailbox <OwnerMailboxAliasOrUPN> -MessageCopyForSendOnBehalfEnabled $True
      

    After this, when a delegate sends as/on behalf of that user, Exchange saves a copy in the owner’s Sent Items. Depending on the Outlook client and registry setting DelegateSentItemsStyle, a copy may also be kept in the delegate’s Sent Items.

    If further control is needed on the client side (classic Outlook only), the admin or user can set the DelegateSentItemsStyle registry value so Outlook decides whether to store the sent item in the delegate’s Sent Items, the owner’s Sent Items, or both. The server-side MessageCopyForSentAsEnabled/MessageCopyForSendOnBehalfEnabled settings remain the primary, supported method.


    References:

    0 comments No comments

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.