
Announcements
I am using Send push notification V2 action in Power automate flow to send a push notification on canvas mobile app. It is working fine for individual/user email addresses.
But, I want to a send push notification to a group. Is it possible to send Power Apps Push notification to security group or mailbox?
Hi @ganeshsanap,
I think you could try the Office365Groups connector
1. Add an Office365Groups connection
2. Write the formula as below:
PowerAppsNotification.SendPushNotification(
{
recipients: ForAll(
Office365Groups.ListGroupMembers("GroupID").value,
mail
),
message: "message"
}
)