Add new line in email content - notification
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2017 02:02 AM
Hi all,
How to make the fields to print in new line when we use email script.
template.print("<br />") is not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2017 02:07 AM
Try
template.print("<br>");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2017 02:54 AM
Hi,
You may need to use <br /> twice to actually start the new line as new paragraph.
<br /> should work, please check if this is what you are looking for?
template.print("<br /> <br />");
Thanks
Please Hit like, Helpful or Correct depending on the impact of the response
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2018 06:27 AM
Hi Alikutty,
template.print("<br /> <br />");
worked in my email script.
Thanks for posting!
Regards,
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2018 06:06 AM
Activate "Newlines to HTML" in notification email script. So that you can use "template.print("<br />") "