I have a gallery that pulls from a SharePoint list. The list was created from a large pre-existing excel spreadsheet. One of the columns is HTML Text. I want to send the value of this column in an email when a button is pressed but keep getting the HTML code wrapped around the value.
Button Code:
Office365Outlook.SendEmail(User().Email, 'Retailer Name' & " information", DataCardValue1.Text & Char(10) & HtmlText2.HtmlText)
Result:
Data from Card Value 1
<div>030301</div>
How do I get the email to remove the <div> and </div>?
Thanks, I'm a Power Apps newbie....