Forum Discussion
Deleted
May 25, 2017Disable email being sent to newly added users
Hi, We have had a request come in that an owner wants to add around 100 users to a O365 group but they do not want the users receiving an email to advise they have been added to the group. The ow...
Deleted
May 25, 2017Hi Bruce,
This does not stop the welcome message being sent out however I came across the powershell command to disable this. By default for us the group is created with WelcomeMessage set as True, to disable (set to false) this you need to run the following command:
Set-UnifiedGroup -Identity "Name of your group" -UnifiedGroupWelcomeMessageEnabled:$false
This stops the welcome message from being sent.
Regards,
Shaun
Joe Ayre
Nov 16, 2023Brass Contributor
I took a closer look into this, and it appears at least to me that if I run the PowerShell to set the 'UnifiedGroupWelcomeMessageEnabled' to false, although it shows as 'false' in the PowerShell output (run Get-UnifiedGroup -Identity <the_group_you_are_working_on> | Format-List), the 'Welcome' emails are still sent for a period of time. Presumably an internal Microsoft timer job runs at some point to actually apply the setting to the back end).
The interesting thing is that I ran the same PowerShell to check the setting (i.e., Get-UnifiedGroup -Identity <the_group_you_are_working_on> | Format-List), the WelcomeMessageEnabled attribute has been reset to 'True'. I don't know why this would be. Be great for some other people to see if this occurs for them, too. Simply run the 'Get-UnifiedGroup....' cmdlet on a group that you have previously set UnifiedGroupWelcomeMessageEnabled to false and see what the WelcomeMessageEnabled attribute is set as.
Weirdly though, despite the WelcomeMessageEnabled showing as 'True', it doesn't look like the Welcome emails are being sent. I added a member to the group I have been working on for this test 30 minutes ago and no Welcome email has been received. Will keep checking on this throughout the day.
All seems a bit random and hard to have any faith that a) setting the UnifiedGroupWelcomeMessageEnabled to false is going to work, b) if it does work, when it will take effect, and c) if it is reset to true, what this actually means.
The interesting thing is that I ran the same PowerShell to check the setting (i.e., Get-UnifiedGroup -Identity <the_group_you_are_working_on> | Format-List), the WelcomeMessageEnabled attribute has been reset to 'True'. I don't know why this would be. Be great for some other people to see if this occurs for them, too. Simply run the 'Get-UnifiedGroup....' cmdlet on a group that you have previously set UnifiedGroupWelcomeMessageEnabled to false and see what the WelcomeMessageEnabled attribute is set as.
Weirdly though, despite the WelcomeMessageEnabled showing as 'True', it doesn't look like the Welcome emails are being sent. I added a member to the group I have been working on for this test 30 minutes ago and no Welcome email has been received. Will keep checking on this throughout the day.
All seems a bit random and hard to have any faith that a) setting the UnifiedGroupWelcomeMessageEnabled to false is going to work, b) if it does work, when it will take effect, and c) if it is reset to true, what this actually means.