Moderators can be created for Office 365 groups. Whenever an email is sent to this group, these moderators need to approve the email before it reaches the group members. Currently, this is only available via powershell.
Below is the cmdlet to create a moderator
Set-UnifiedGroup -Identity test -ModeratedBy email1, email2
where test is the name of the mailbox sand email 1, and email 2 are email addresses of the moderators
The command to add people is mentioned below
Set-UnifiedGroup -Identity test -ModeratedBy @{add="email1","email2"}
Comments
0 comments
Please sign in to leave a comment.