I've set up a flow that gives you the option to send out an email of any item in a gallery.
My body contains several things, but I can't seem to add a line break.
I want each DataCardValue to be a new line in my email. I've tried Char(13), but that doesn't work.
Any idea what I'm missing?
Solved! Go to Solution.
Hi @jrojas
You need to concatenate the data sent to email.
PowerAppsbutton_5.Run("Equipment: " & DataCardValue16.Text & "<br>" & DataCardValue19.Text & DataCardValue6.Text)
Thanks.
Hi @jrojas
either will do
"Equipment: " & DataCardValue16.Text & "<br> Job:" & DataCardValue19.Text & "<br> Comments:" & DataCardValue6.Text
"Equipment: " & DataCardValue16.Text & "<br>" & "Job:" & DataCardValue19.Text & "<br>" & "Comments:" & DataCardValue6.Text
Hi @jrojas
Use "<br>" instead of Char(13). In Send an Email > Show advanced option, set IsHTML = Yes.
Thanks.
Thanks!
I have this but I'm still getting an error:
PowerAppsbutton_5.Run("Equipment: " & DataCardValue16.Text
&<br> & DataCardValue19.Text
& DataCardValue6.Text)
Hi @jrojas
You need to concatenate the data sent to email.
PowerAppsbutton_5.Run("Equipment: " & DataCardValue16.Text & "<br>" & DataCardValue19.Text & DataCardValue6.Text)
Thanks.
Awesome that worked!
Thank you!
Sorry, just another question.
I added more text to my email (Job and Comments), but when I do I get an error.
PowerAppsbutton_5.Run("Equipment: " & DataCardValue16.Text
&"<br>" "Job:" & DataCardValue19.Text
&"<br>" "Comments:" DataCardValue6.Text)
Am i supposed to add a comma somewhere or not sure what's missing.
Hi @jrojas
either will do
"Equipment: " & DataCardValue16.Text & "<br> Job:" & DataCardValue19.Text & "<br> Comments:" & DataCardValue6.Text
"Equipment: " & DataCardValue16.Text & "<br>" & "Job:" & DataCardValue19.Text & "<br>" & "Comments:" & DataCardValue6.Text
User | Count |
---|---|
142 | |
142 | |
76 | |
73 | |
71 |
User | Count |
---|---|
231 | |
170 | |
74 | |
69 | |
60 |