Skip to main content
October 11, 2023
Question

how to keep the lines of paragraph in the email body

  • October 11, 2023
  • 6 replies
  • 0 views

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

6 replies

stefanhelzle0001
Brainy
October 12, 2023

Try

substitute(tostring(pv!newComments), char(10), "
"),

Just copied your code. Are you sure you need that tostring() call?

linp0001Author
October 12, 2023

thanks, it works, and removed the rostring function

harshitb6843
October 12, 2023

You have used char(10) in string. Doing that will check for char(10) written in the string. Removing the quotes should work. 

linp0001Author
October 12, 2023

my bad. it's working now. thank you.