sent items.

Glenn Maxwell 10,146 Reputation points
2024-04-13T18:55:54.2066667+00:00

Hi All

i am using exchange 2016 hybrid environment. we created shared mailboxes in oprem and migrate to exchange online. i have used the below settings when i created shared mailbox. when users send emails from shared mailbox the emails should go to sent items of shared mailbox not users mailbox. How do i revert back the settings.

Set-mailbox sharedmailbox@contoso.com -MessageCopyForSendOnBehalfEnabled $True 
Set-mailbox sharedmailbox@contoso.com -MessageCopyForSentAsEnabled $True  

Microsoft Exchange Online
Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,081 questions
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,186 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,354 questions
Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
1,893 questions
0 comments No comments
{count} votes

Accepted answer
  1. Noah Ma-MSFT 610 Reputation points Microsoft Vendor
    2024-04-15T10:03:16.3766667+00:00

    Hi @Glenn Maxwell,

    To help you better, let me check with you first. If you want the sent emails will be saved to the user’s Sent Items folder instead of shared mailbox. You can turn off the settings that you made by replacing $true with $false in the [Set-Mailbox] command. For example, you can run the command:

    Set-mailbox sharedmailbox@contoso.com -MessageCopyForSendOnBehalfEnabled $false

    Set-mailbox sharedmailbox@contoso.com -MessageCopyForSentAsEnabled $false 

    You can refer to the documentation linked below for more information about it: Automatically save sent items in delegator's mailbox in Exchange Online | Microsoft Learn.

    However, if you want the sent emails from shared mailbox should be saved to Sent Items of shared mailbox, you can first check the value by these steps:

    -First, you need to connect to Exchange Online PowerShell.

    -Run the following cmdlet: Get-Mailbox -Identity sharedmailbox@contoso.com | FL MessageCopyForSend*.

    -If the value displayed is false, you can run the cmdlets that you mentioned above to change it to true.

    Hope these could be helpful, if I have any misunderstanding or you have any other questions, please feel free to post back.


0 additional answers

Sort by: Most helpful