Hi,
I made a form in powerapps, when i hit on send button in the app the contents will be send to a sp list. Now i'm looking for a way to sending it also to my email. Is there a way to do that in the same code? I'm using this code on the 'on select':
ForAll(Gallery1.AllItems;
Patch(Uitgeleend;
Defaults(Uitgeleend);
{Title:Titel;
categorie:Categorie.Value;
barcode:Barcode;
project:Textcart.Text;
datumretour:Datepick.SelectedDate;
aantal: Value (quant.Text)
}
)
)
;;Clear(MyCollection)
;;Navigate(Uitleen)
Thanks!