SOLVED

How to disable sending emails from all channels of a Team?

Brass Contributor

Hi!

 

I have a Team with 10 channels and I need to disable sending emails in all case: when a new user is added...

 

How can I do it?

 

Regards

3 Replies
best response confirmed by adam deltinger (MVP)
Solution
Hi @vcima,

To disabling sending emails when a new user is added see this thread

https://techcommunity.microsoft.com/t5/microsoft-teams-ama/invitation-email-to-team-disable/m-p/2998...

Hope that answers your question

Best, Chris

Hi @Christopher Hoard 

 

I'm following this steps to disable the initial emails and when I finish the step 6 I'm obtaining a message with somethig like this: "WARNING: The command completed successfully, but no configuration value has been changed from
"mygroup_objectid"" . What can I do in this case?

 

  1. $groupName = "<Replace Group Name>"
  2. Set-ExecutionPolicy RemoteSigned
  3. $UserCredential = Get-Credential
  4. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
  5. Import-PSSession $Session -DisableNameChecking
  6. Set-UnifiedGroup $groupName -UnifiedGroupWelcomeMessageEnabled:$false

Regards

1 best response

Accepted Solutions
best response confirmed by adam deltinger (MVP)
Solution
Hi @vcima,

To disabling sending emails when a new user is added see this thread

https://techcommunity.microsoft.com/t5/microsoft-teams-ama/invitation-email-to-team-disable/m-p/2998...

Hope that answers your question

Best, Chris

View solution in original post