unified group email address

Roger Roger 7,181 Reputation points
2024-10-07T06:08:14.1166667+00:00

Hi All,

I have an Office 365 unified group, and the group owner does not want to use the email address feature to send or receive emails. The owner primarily uses the SharePoint site and wants to restrict all members of the unified group from using the email address feature, i.e., either disable or remove the email address to prevent sending or receiving emails. Is it possible to restrict the email address? Please guide me.

Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,182 questions
Exchange | Exchange Server | Other
Exchange | Exchange Server | Management
Exchange | Hybrid management
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2024-10-07T09:05:45.49+00:00

    Hello, @Roger Roger,

    Welcome to the Microsoft Q&A platform!

    Based on your description, I understand that you want to know if it is possible to disable or remove email addresses to prevent all members of an O365 Unified group from sending or receiving email.

    While there is no direct way to completely remove an Office 365 group's email address, you can effectively disable it by combining the following methods to ensure that the group is unable to send or receive email.

    1.You can hide the group from the Global Address List (GAL) and other address lists by using Set-UnifiedGroup in PowerShell. This way, users won't be able to find the group in Outlook or Outlook on the web. The specific command and its parameter are as follows.

    Set-UnifiedGroup -Identity "GroupName" -HiddenFromAddressListsEnabled $True
    

    User's image

    2.You can use Set-UnifiedGroup cmdlet in PowerShell to block users from sending or receiving emails from the group's address. The specific command and its parameter are shown below.

    Set-UnifiedGroup -Identity "GroupName" -RejectMessagesFromSendersOrMembers @{Add="Sender1","Sender2"}
    

    User's image

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Thank you for your support and understanding.

    Best Wishes,

    Alex Zhang


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.