I'm trying to send PushNotification V2 to more than one recipient without going out to powerautomate.. is this possible?
sending to one person is fine works well
PowerAppsNotificationV2.SendPushNotificationV2(
"PowerApps",
"{appIdentifier: appid}",
["myemail.com"],
TextInput1.Text,
false,
{}
)
but how do I extend the recipients to more than one? my recipients are in a collection and there is only one field in the collection with the email addresses..
TIA