
I have a Combobox with all the names of the employees in my company, I would like to concatenate this with "@outlook.com", inside of the PowerAppsNotification connector and then send a push notification out to that person.
So something like this:
PowerAppsNotification.SendPushNotification({recipients: Concatenate(ComboBox1.SelectedItems.Value,"@outlook.com"), message:"This is a test", openApp:true});
This code doesn't work, so I wondered what I'm doing wrong and if it is possible to do this?
This has been solved with:
recipients:[Concatenate(ComboBox1.Selected.Value,"Outlook.com")]