I have a form that is sending an email out and needs to include the row values from a table in the email. To get the table rows into the email I am using javascript to write it into a multiline field in the format I need it in. What I am needing is to apply HTML formatting to these to make put them in a bullet list.
I first tried adding the html to the values in the field but it renders them as text, not as html (e.g. <ul><li>Item 1</li><li>Item 2</li></ul>). Additionally, Forms does not let you submit the form with html formatting in a field so that created a second problem.
I next just updated it to put a symbol in front of the text, to create my own bullets, but once again they rendered as text instead of html (e.g. ◉). If I load the character directly into the email (e.g. ◉) it looks correct. I know I can do this via Workflow but am trying to get the email creation handled in the Process Diagram so that non-LF Admins can manage the verbiage in the email. Any one been able to inject html into an email in Forms via a variable and have it render?