Skip to content

Send an email to current logged in user

To send Email from power apps, i have added controls with below properties.

TypeHint TextMode
SubjectText boxEnter SubjectSingle Line
MessageText boxType message hereMultiline
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.

Published inPower Apps Canvas