Forum Discussion
Is there another option t ensure that mail is delivered to all group members
What you can do is periodically run a script that adds all members of the group as Subscribers.
- EricDefermJun 24, 2019Iron Contributor
HiVasilMichev tx for your prompt response. Can you share the code of such script?
Nevertheless it's still not clear to me why Microsoft is not making a clear distinction about sending emails to an Office 365 group by means of using (addressing) it just like a distribution list from within Outlook (EOL) and on the other hand giving the users the opportunity to opt-out from getting notifications about all posts made in the shared inbox o/t O365 group. In my belief these are 2 different things and could/should as such also be separated I/t setup/concept of O365 groups. Tx & brgds.
- VasilMichevJun 24, 2019MVP
It's as simple as
Get-UnifiedGroupLinks blabla -LinkType Member | % {Add-UnifiedGroupLinks blabla -LinkType Subscriber -Links $_.PrimarySmtpAddress }
- tony-derricottJun 24, 2019Gold Contributor
VasilMichev how do you automate this script?