Today, I am writing about how to create shared mailboxes in Office 365. Shared mailboxes are helpful for a group of people in a corporation to monitor and send emails from a common account - for example, [email protected] or [email protected]. When we send the group replies to a message sent to the shared mailbox, the email looks like it was sent by the shared mailbox, not from the individual user.

Feed below details on the available page

Use the "Exchange Management Shell" to create a shared mailbox. Users who are members of the security group will be granted the permissions to the mailbox.

New-Mailbox -Shared -Name "Test" -DisplayName "Test" -Alias Sales | Set-Mailbox -GrantSendOnBehalfTo psp | Add-MailboxPermission -User psp -AccessRights FullAccess -InheritanceType All

Thanks.