04-20-2020 02:38 AM - edited 04-20-2020 03:33 AM
I'm creating a new Team and I have to add new user to this Team but I don't want that the users receive the welcome email.
I had tried to disable this function with a rule filter in Exchange and with this command in PowerShell
Set-UnifiedGroup $groupName -UnifiedGroupWelcomeMessageEnabled:$false PS C:\WINDOWS\system32> Get-unifiedGroup | Select-object -Property DisplayName, WelcomeMessageEnabled DisplayName WelcomeMessageEnabled ----------- --------------------- MyTeam False
But nothing of this works fine and the new users are receiving this emails.
How can I do it?
Regards
04-20-2020 05:56 AM
04-20-2020 07:08 AM
Hi @Juan Carlos González Martín, thanks for your reply.
The problem is that I have used this solution, but it doesn't work:
Set-UnifiedGroup MyTeam -UnifiedGroupWelcomeMessageEnabled:$false PS C:\WINDOWS\system32> Get-unifiedGroup | Select-object -Property DisplayName, WelcomeMessageEnabled DisplayName WelcomeMessageEnabled ----------- --------------------- MyTeam False
After this, when I add a new user, this user receive an invitations.
I don't know what can I do to solve this.
I have been speaking with Microsoft Teams Support and this is their reply:
12-20-2020 07:31 PM
@vcima
I have found that, if you use PowerShell to add members to the Office 365 Group connected to the Team, it will not send an email...
Get-UnifiedGroup -Identity "<Group Name>" | Add-UnifiedGroupLinks -LinkType Members -Links <emailofmember>