I am making a google form that automatically sends out an HTML email upon submission of a new response.
A few fields of the google form are "paragraph text" which might actually have more than one paragraph. It records on the google spreadsheet within the cell like this:
Text first line
Second line of text
3rd line of text
But when the email is generated it will show like this:
Text first line Second line of text 3rd line of text
How could make it so the code would look like this: (add line breaks)
Text first line <br/>
Second line of text <br/>
3rd line of text
The snippet of code I am using to grab the cell data and add to the email message looks like this
message += e.namedValues[columns[5]];
tags?](//stackoverflow.com/questions/784539). This may be more suitable for what you're trying to do, since the text read from the form submission should have newline characters in it already (`\n`). – Mogsdad Aug 14 '15 at 15:39