How to add a background image in email notificationsIssue How to add Background image (which is saved in db_image table) to the Notification template via background attribute without using TAG img option. ReleaseRomeCauseWhen customer attaches background image via attribute it doesn't reflect in the Email - Image populated in the email body background with the below code in a Notification scripttemplate.print("<Style> body {background-image:URL('imagename.jpg');} </Style>");- Notification preview and preview html from sent email looks good but when the image in the background is missing when the users receive the emailResolutionWe need to use the code directly in the Message HTML field instead of using in the Notification scripts.We need to make sure we are giving the complete URL of the image in the code Sample code to add the attribute in the HTML field <Style> body {background-image:URL('https://<instancename>.servicenow.com/imagename.jpg');} </Style> This will help reflecting the background image for the Notification and can be seen in Preview and in Email clients as well.