I have a simple powerapp where I gather data entered in text inputs across multiple screens. When the user reaches the last screen and selects on the submit button, the data will be sent to a email address. The onselect property of the submit button currently is:
Office365Outlook.SendEmail(
"myemail",
"form",
TextInput1 & TextInput2 & TextInput3 ....etc
)
The email received has no line breaks or spaces between the different text inputs, how do I display each input on a separate line?
Thanks
Solved! Go to Solution.
Please consider changing your Formula to the following:
Office365Outlook.SendEmailV2(
"myemail",
"form",
TextInput1.Text & "<br>" & TextInput2.Text & "<br>" & TextInput3.Text ....etc
)
Note: 1) reference the Text property of the TextInput controls. 2) Use the SendEmailV2 function as it will utilize the HTML elements properly.
I hope this is helpful for you.
Please consider changing your Formula to the following:
Office365Outlook.SendEmailV2(
"myemail",
"form",
TextInput1.Text & "<br>" & TextInput2.Text & "<br>" & TextInput3.Text ....etc
)
Note: 1) reference the Text property of the TextInput controls. 2) Use the SendEmailV2 function as it will utilize the HTML elements properly.
I hope this is helpful for you.
Perfect, thank you!
Hey Randy,
How would I add more email addresses on CC?
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
214 | |
205 | |
86 | |
59 | |
38 |