Forum Discussion
JG-Burke
Oct 15, 2021Brass Contributor
Group Settings - Send Copies of group conversations
We are experiencing this problem: You might not receive email notifications for responses that you submit to a Group Form, such as a Form that you create in Microsoft Teams. To receive email notific...
- Oct 16, 2021That setting only applies to new members, and if it's now working correctly in the UI, you can set it via PowerShell:
Set-UnifiedGroup groupname -AutoSubscribeNewMembers
For existing users, you can add them to the "subscribers" list:
Add-UnifiedGroupLinks groupname -LinkType Subs -Links user1,user2,user3
VasilMichev
Oct 16, 2021MVP
That setting only applies to new members, and if it's now working correctly in the UI, you can set it via PowerShell:
Set-UnifiedGroup groupname -AutoSubscribeNewMembers
For existing users, you can add them to the "subscribers" list:
Add-UnifiedGroupLinks groupname -LinkType Subs -Links user1,user2,user3
Set-UnifiedGroup groupname -AutoSubscribeNewMembers
For existing users, you can add them to the "subscribers" list:
Add-UnifiedGroupLinks groupname -LinkType Subs -Links user1,user2,user3