Perspective Text Area Line Breaks

On a text area component, if I enter text and then hit enter for a new line, is there a way to send this HTML so the line breaks will “go” with it? If I type in a text area, enter new lines, then use the text value in an email, it only has spaces, no breaks.

You can replace any newline characters (usually listed as \n in programming contexts) with HTML line breaks <br> via a script transform.

1 Like

Thank you @PGriffith