- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:02 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:19 PM
Do you have attachments in record? --use include attachment checkbox in Notification
If you dont have attachment in record and want to send image. Use email script.
// insert the image to image table
var image = "abc.png''; //image name
template.print( '<img src="' + image + '" />' );
//call the email script to youre Notification using
${mail_script:emailscriptname}
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:08 PM
Hi,
Please refer below links, this might help you.
Mark it correct and helpful.
Thanks
Bhagyashri Sorte.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:19 PM
Do you have attachments in record? --use include attachment checkbox in Notification
If you dont have attachment in record and want to send image. Use email script.
// insert the image to image table
var image = "abc.png''; //image name
template.print( '<img src="' + image + '" />' );
//call the email script to youre Notification using
${mail_script:emailscriptname}
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:26 PM
Hi Ganesh
Please refer below link
Thanks
Priyanka

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-27-2020 10:27 PM
Hi Ganesh,
In addition to Bhagyashri I would like to add the below example-
I have found below example where user wanted to add company logo as an image to notification, so this might help you achieve your requirement just instead of logo you need to share your screenshot images. Please refer example below-
You can write email notifications in HTML and refer to the company logo in an IMG tag after you upload it to ServiceNow:
- Choose Content Management > Images.
- Click New to create a new image. The Images form opens.
- In the Name field, enter the new image's filename (such as company_logo.png).
- In the Images field, click Click to Add. A Choose an Image File page opens.
- Click choose a file and upload the company's logo.
When you have created the Image record, you can use the file in an email notification's HTML template, like this:
<img src="company_logo.png" width="<yourimagewidth>" height="<yourimageheight>" />
The notification will look in Image records for an image whose name matches the src attribute.
Warm Regards,
Shubham Bongulwar
Please mark helpful or correct if it helps!!!