Hello,
Would anyone know how to send a push notification to a predefined email list? For example I have a SharePoint list with 2 columns, a user name and an email column.
Doing something like this just dosent work:
ClearCollect(Push_List, SharepointPoint_List_With_emails);
PowerAppsNotification.SendPushNotification(
{
recipients: SharepointPoint_List_With_emails.Email ,
message:"Test",
openApp:true
})
Would anyone know how to accomplish this?