J'ai crée une Power Apps application qui contient deux genres d'utilisateur, un de type "utilisateur" et d'autre de type "Admin", tous ces utilisateurs sont enregistré dans une liste de SharePoint, puis j'ai crée une espace Où si l'utilisateur a oublié son mot de passe il devra remplir ces informations personnelles puis il clique sur une Botton qui appelle le flow et puis envoyer l'email à toutes les admins pour le renvoyer le mot de passe, ma question c'est comment je peux passer tous les emails des admins à la flow.
SharePoint liste :
Flow et le code Dans Power Apps:
Hi @yous,
If I understand correctly you want to retrieve all the admin emails from your list and use them in the send an email (v2) action. Sorry, my French is not that great.
You could use a Get Items with an Odata filter for type equals admin. With a Select you can only select the email addresses and join them together with a semi colon character.
Below is an example.
OData Filter Query
Types eq 'Admin'
Use the value field in the From field of the Select action. Switch to text mode in the Map field with the button on the right side and add this expression
item()['Email']
Use this expression for the To field
join(body('Select'), ';')
Michael E. Gernaey
497
Super User 2025 Season 2
David_MA
436
Super User 2025 Season 2
Riyaz_riz11
244
Super User 2025 Season 2