check box in email notification servicenow
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2024 03:24 AM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2024 08:19 AM - edited 10-08-2024 08:22 AM
Hello Sai,
Did you get any solution for your query?
You can use below email script on "sysapproval_approver" table. it works for me
if (current.sysapproval.variables.abu_dhabi == 'true') {
template.print("<br><input type = 'checkbox' style='margin-left: 30px;' checked disabled >Abu Dhabi<br>");
}
if (current.sysapproval.variables.france == 'true') {
template.print("<input type = 'checkbox' style='margin-left: 30px;' checked disabled>France<br>");
}
if (current.sysapproval.variables.singapore == 'true') {
template.print("<input type = 'checkbox' style='margin-left: 30px;' checked disabled>Singapore<br>");
}
Result will look like this
Please let me know, if you found another solution other than this, as i need to show more than 30 checkboxes in email body
Mark as helpful if it works for you