E-mail node new line

Is it possible to send multiple lines message with e-mail node?

In my case, I need to send some data from the database. Now my message looks like this:

but it's not to easy to read so I need to convert it into .csv file, open in Excel and transpose to make it readable.

Maybe anybody knows, how to format a message for the e-mail node, to get a new line, in the e-mail.

Depends how you are creating the body of the email...
you need to add a line ending to each line you are adding - either + "\n" or + "<br/>" depending if it's plain text or html.

1 Like

/n doesn't work (I tried it before).

But < br > works like a charm. Thank you.

pool_newline

1 Like