Add new line in email content - notification
Options
- 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.
6 REPLIES 6
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2023 02:23 AM
Hi Everyone,
Please type new line message in next line :
For example: I need to print "Thankyou" in one line and "Regards IT services Information security team" in other line.
Type to print the message in different lines like this :
template.print("Thank you");
template.print("<br />Regards IT Services & Information Security <br />");
output:

Please mark it helpful If this is the solution you all are looking for
Please mark it helpful If this is the solution you all are looking for
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2023 02:27 AM
You can add like this as well to add the spacing between two lines
template.print("<br />Thank you <br />");
template.print("<br />Regards IT Services & Information Security <br />");
OUTPUT:

Please mark it helpful If you got the solution