
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2018 08:57 AM
Dear All,
I am trying to create the change field values in my email body in a table format. I have created the fields value in paragraph mode with a line break. However, I need to incorporate them in a table format.
Attaching the screenshot how I want the email body to look like.
Any Suggestions would be helpful.
Thanks
Shan
Solved! Go to Solution.
- Labels:
-
Service Level Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2018 07:07 AM
Hi All,
I got the output that is required. Able to create the table using the html tags in Emails Scripts. Please let me know if any one is having the similar requirement.
Thanks
Shan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2018 09:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2018 09:56 AM
Hi Hardik,
That is the current Set up. I have to remove the body completely and send it from the email script. Because I have to print two different bodies based on the conditions. Using the table like above in the body won't help me.
So I am customizing the email scripts with two bodies and print it when one condition matches. So I have to use the table format in the email script itself.
Thanks
Shan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2018 07:07 AM
Hi All,
I got the output that is required. Able to create the table using the html tags in Emails Scripts. Please let me know if any one is having the similar requirement.
Thanks
Shan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2019 10:59 PM
Hi ,
I have same requirement. I am fetching child records ;
Script:
template.print("Summary of Order Lines:<br />");
var gr = new GlideRecord("x_hclte_zekelman_c_order_line");
gr.addQuery("u_reference_1", current.sys_id);
gr.query();
while(gr.next()) {
template.print("Order Line :" + gr.number + " Description : " + gr.description + " Category: " + "Quantity: " + gr.quatity+ " each <br/>");
}
// Add your code here
Could u plz help on this.