- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2020 02:10 AM
i have a pdf attachment, want to send that attachment in notification
created notification in workflow
how can we achieve this
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2020 02:15 AM
Hi,
Do below steps.
1. Upload attachment in sys_attachment table.
2. Create a mail script: add_attachments with below script
template.print ( 'PDF attachment: <a href="sys_attachment.do?sys_id=sys_id_of_the _attachment">Attachment name </a>' ) ;
3. Call the mail script in the body of notification as below.
${mail_script:add_attachments}
Thanks,
Jaspal Singh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2022 11:08 PM
I tried doing this for my scoped application but the method you said is a static one and need to been done manually each time which is not feasible for end user. Could you tell any dynamic method for attaching pdf to email notification which gets auto populated in the email.