- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 08:26 PM
[Context] From the catalog item, the user will attach an image to the attachment variable. The image will then be attached to the email notification, rather than being embedded in the email body.
[Q] How do we attach the image file to the email? Can I achieve this without using a Business Rule?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 10:50 PM - edited 05-13-2024 10:55 PM
Yes, it does.
In that case you'll have to copy the image from the attachment variable to the actual item record, you can achieve this using the same flow that's triggered when a catalog item is submitted, you can add a copy attachment action just before firing the event to trigger the notification.
Regards,
BR.
Ishaan Shoor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 09:18 PM
Hello,
You can use the below flow:
Step 1: Get attachment variable from the RITM record
Step 2 : Get attachment associated to the RITM record
Step 3: Look up the attachment in the attachment table
Step 4: Send email via flow
Step 5: Copy the attachment to the email record.
If my answer helps you in any way please mark it as correct or helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 09:37 PM
Hi Vishwa,
Thanks for your response. However, I'm using the notification type 'email' because I'm utilizing EventQueue in my flow.
Are there any other solutions for this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 09:50 PM
Hello,
Could you share a screenshot on how you are sending the notification so i can replicate the same and give you a correct solution?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2024 10:03 PM - edited 05-13-2024 10:07 PM
1. I called the event "event_trigger" in my flow designer, since we are using eventQueueScheduled, because we wanted to send the email based on the date & time the user provided in the catalog, thus the use of QueueScheduled.
2. This email notification will send if event "event_trigger" was fired. The mail script "test", contains the body of the email.
3. Back to the Service Catalog, I want this image attachment variable, to be attached together with the email, but not embedded. Outside the email body.
Expected Outcome:
I hope this clarifies everything.