Add a static attachment to an email that is sent upon creation of a case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2025 05:11 AM
I know this question has been asked here:
Solved: Using Flow Designer, add attachment to Send Email ... - ServiceNow Community
but I'm wondering if there is an easier more out of the box solution to have an attachment thats always added to a canned email notification that is sent when a case is created.
it wouldn't be a dynamic attachment, so nothing that was added to the case by the user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 05:15 AM
I'm still confused on step 1 here. Why would I add a file to system properties?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 05:25 AM
because the file has to be stored in some record so that it gets added to sys_attachment without which you cannot attach in email.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2025 06:14 AM
One other question is, with the BR is it possible to pull values from the case that kicked off the email send?
Right now, the requirement is to attach a file to a notification for a specific type of form submission but the table that is used for that submission is also shared with other service forms so we need to be able to know which service actually created the record and kicked off the notification.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2025 09:41 PM
in the business rule you know the case sysId
Query case table with this and determine if file needs to be attached or not
var caseSysId = current.instance; // this gives the case record
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2025 05:52 AM
perfect thank you!