By default, the sender of an email message to a Microsoft 365 group doesn't receive a copy of the message in their Inbox, even if the sender is a member of the group.
Use this EXO PowerShell command to allow the sender to receive a copy of each email they send to the Microsoft 365 group:
Set-MailboxMessageConfiguration <MailboxName> -EchoGroupMessageBackToSubscribedSender $True
To enable the setting for all mailboxes at once:
Get-Mailbox -ResultSize Unlimited | ForEach
{Set-MailboxMessageConfiguration -Identity $_.UserPrincipalName
-EchoGroupMessageBackToSubscribedSender $true}
Note Changes to this setting take up to an hour to take effect.
Comments
0 comments
Please sign in to leave a comment.