
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2018 10:01 AM
Hi all,
I've created a Custom App using Studio, whereby we will receive Weather Warnings from a National Weather provider, and then forward this e-mail onto relevant parties.
I created an extension of TASK so we can have a record of these weather alerts. The e-mail that we will receive, will contain a PDF attachment, that is the details of the warning.
Through my inbound action, I'm creating a record on my new table, where the PDF will be attached to the ticket.
Through Flow (new module, not legacy workflow) I've been able to spin my flow up pretty quickly. However I see no option to include the attachment from the record, onto the e-mail I'm sending out.
Any ideas how I can accomplish this?
- With Send Email action in Flow Designer, have the attachment from the record included in the generated email
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2018 09:13 AM
Hi Daniel,
Bad news is that I don't think there is a OOB functionality for this. Good news are that it's very easy to solve with a custom action. Basically you create you own "copy attachment" action and then you can use that action to copy the attachment from the task record to the email-record that is used to send the email.
I made a quick video here for you to see what I'm talking about:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 10:32 AM
This helped me a lot (tokyo version, copy attachement is already in the proposed actions)
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0813220

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2023 09:55 AM
@CecileCThis looks promising, but incomplete. Were you able to get it to work? If you were, could you elaborate on these steps?
-First it requires to look up the attachments from the triggered record id
- How do you do this? I create a lookup on the sc_task record that holds the attachment, but there are no data pills for the attachment.
-Then we need to look up the record with lookup attachment sys_id from the sys_attachment table
- How do I get a data pill with the attachment sys_id?
-Now we need to configure copy attachment action with source record as 'attachment record' from look up record action
- How do I get a data pill with the attachment sys_id?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2025 01:41 AM
Hi everyone,
If you simply want to attach a file present in a record (incident, SC Task, etc.) to an email, there is another, simpler and completely OOTB-friendly method based on notifications.
1. Create a record in the Notifications table (sysevent_email_action)
2. Select the table
3. Select "Send when" = Triggered
4. Check the "Include attachments" box
5. In the Flow, create a "Send Notification" action linked to your record and this notification
The file will be included as an attachment in your received email.
Regards