Microsoft 365 groups – Do you receive a copy of your own email into your inbox?
Updated by Brady Stroud [SSW] 1 year ago. See history
123
Microsoft 365 groups - When anyone sends an email to a Microsoft 365 group (Office365 groups) e.g: <SysAdmins@Northwind.com> they don’t receive a copy of their own email, which is different from normal distribution groups. <https://support.microsoft.com/en-us/office/learn-about-microsoft-365-groups-b565caa1-5c40-40ef-9915-60fdb2d97fa2> To change the behavior the user can use the checkbox Outlook | Settings | Additional Settings | Groups | ‘Send me a copy of the email I send to a group’. <https://support.microsoft.com/en-us/office/i-m-not-receiving-a-copy-of-messages-i-send-to-a-group-in-my-inbox-07567cda-f5ce-4e52-b278-4c63dfdd6617> <imageEmbed alt="Image" size="large" showBorder={false} figureEmbed={{ preset: "default", figure: 'Outlook web – Enable group settings', shouldDisplay: true }} src="/uploads/rules/do-you-receive-copy-of-your-email-into-your-inbox/outlook-web-enable-group-settings.jpg" /> Note: This can be enabled on the server side by doing a PowerShell script. This feature is turned on by default. Users can turn it off manually using the above steps to not receive a copy of a email sent to a Microsoft 365 group. ```powershell # Connect to Exchange Online Connect-ExchangeOnline -UserPrincipalName user@northwind.com # Get the mailbox message configuration for a specific mailbox Get-Mailbox user@northwind.com | Get-MailboxMessageConfiguration | Select EchoGroupMessageBackToSubscribedSender # Enable the option to send a copy of the sent message to the sender's mailbox $mailbox = Get-Mailbox -Identity "user@northwind.com" | Set-MailboxMessageConfiguration -EchoGroupMessageBackToSubscribedSender $true ```