Hi there,
I have the following information in a paragraph, need to send this information in the email body.
in the "send email" smart service, tried this: substitute(tostring(pv!newComments), "cha(10)", "<br>"), it does not work, all the informaiton are in one line in the email body.
could anyone know how to do it?
thanks.
L
Discussion posts and replies are publicly visible
Try
substitute(tostring(pv!newComments), char(10), "<br/>"),
Just copied your code. Are you sure you need that tostring() call?
thanks, it works, and removed the rostring function