- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2022 09:03 PM
Hi all, I am writing a user creation notification in ServiceNow where a user is created in Azure AD via Service Catalog / REST using integrationHub Microsoft Azure AD Spoke. Now, after creating the user, I need to send an email to the user informing about the instructions to proceed.
I am wondering how can I attach a static PDF file to the email notifications and where do I store this PDF file (a user instruction guide)?
Appreciate your help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2022 10:09 PM
Hi
basically ServiceNow would copy attachments from source record to the generated email. In your case you will need any central storage for your PDF. I recommend writing an knowledge article and link that article in your email. If you still want to send an email with attachment you can store that PDF at the knowledge article. But then you need additional code to copy the attachment from knowledge article to the genrated email, for example with a Business Rule.
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2022 10:09 PM
Hi
basically ServiceNow would copy attachments from source record to the generated email. In your case you will need any central storage for your PDF. I recommend writing an knowledge article and link that article in your email. If you still want to send an email with attachment you can store that PDF at the knowledge article. But then you need additional code to copy the attachment from knowledge article to the genrated email, for example with a Business Rule.
Maik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2022 10:25 PM
Thanks Maik. A KB attachment option is what I was looking for. It worked!