- 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 10:45 PM
Yes, this image variable is present on the actual record. The user will attach the image they want to the variable 'v_others_image' in the service catalog. Then, we want to attach it together with our email script.
Hopefully, this clarifies everything.

- 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 11:04 PM
This works!
Thank you Ishaan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-14-2024 12:25 AM
Hi Ishaan,
How about limiting the attachment to only the file from the variable "v_others_image" to be sent in the email?
Using the Copy Attachment Action forces the notification email to include all attachments, including the ones we don't want to send.
Is there any way to achieve this?