Integrate Power Apps with Power Automate
You can integrate Power Apps with Power Automate to send an email automatically when a user submits a form by following these steps:
Steps
1️⃣ Open Power Apps and go to the Canvas App where you want to send emails.
2️⃣ Click on Power Automate in the left menu.

3️⃣ Click + Add flow → Create a new flow.

4️⃣On the Create your flow screen, from the list of instant templates, select Click a button in Power Apps to send an email.

5️⃣The To field is automatically auto-populated with To: Sendanemail(V2)_To.
6️⃣Select Save to save the flow.
7️⃣In Power Apps, select the Submit button of your form.
8️⃣Use this formula in the OnSelect
property:
SendEmailFlow.Run(EmailInput.Text)
Replace SendEmailFlow
with the actual name of your flow and EmailInput
with your text input control name.
See Also