need help on the email layout html script
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi
Can anyone help on email layout script to add client image and notification body under it and border around it. if any possibility, please entire script which helps a lot
Any inputs really helps
Thanks,
Anusha
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
If you're looking to add an image to the footer, the code below will help. Replace the src value with your image URL. You can upload the image to the sys_image table in ServiceNow to generate a valid image link.
template.print('<div class="footer" style="padding:10px;text-align:center;font-size:12px;color:#777;">' +
'<img src="https://<your-instance>.service-now.com/image/company_logo.png" alt="Company Logo" style="height:40px;margin-bottom:10px;" /><br>' +
'This is an automated message from ServiceNow.' +
'</div>');
Thanks,
Vignesh
"If this solution resolves your issue, kindly mark it as correct."
