Hello,
I have a dilemma please.
I have a text input with multiline i.e. below
**blah **
**blah **
**bleh **
**blah ** bleu
my problem is in my email that has html, it doesn’t show it as formatted.
if the html field in the email is ON, it will display the value as blah blah bleh blah bleu
otherwise it will display it as is but the html on my email will all be garbage
I hope my question is clear and sorry if i made your head hurt
If the text is stored as a variable, you can do a find and replace for the “new line” (carriage return) character for the html new line. Replace({multilineVar}, {chr(10)}, ‘ ’);
If it is just text you are manually entering, you can simply add after each line you want to have a new line.