send email from button click in Power Apps
PowerApps send email on button press
- On the Powerapps screen, Insert a Combo box (Insert -> Input -> Combo box).
- Select the Combo box and set its Items property as:
Items = ["PowerApps", "Power BI", "Power Automate", "SharePoint Online"]
- Next, Insert a Button (Send Email) and apply this below formula on its OnSelect property as:
OnSelect = Office365Outlook.SendEmail("nancy@xxxx.onmicrosoft.com", "New Concept has been Added", "Concept: " & Concat(ComboBox1.SelectedItems,ThisRecord.Value))Where,
- Concat = The Concat function concatenates a mix of individual strings
- ComboBox1 = Combo box control name

- Now save and preview the app. Select one choice from the Combo box and hit the Send Email button. Then you can see a mail will get by the recipients as like the below screenshot.

Comments
Post a Comment