To send Email from power apps, i have added controls with below properties.
Type | Hint Text | Mode | |
Subject | Text box | Enter Subject | Single Line |
Message | Text box | Type message here | Multiline |
Send | Button |
Since i want to send email from outlook, I will add “Office 365 outlook” connector
On the “On Select“ property of button, I have written the below formula.
Office365Outlook.SendEmailV2(User().Email,subject.Text, body.Text)
User().Email is the email of current logged in user.