Reputation: 11
I want to trigger a specific notification that will contain catalog variable item details on how to do this in servicenow.
Upvotes: 1
Views: 1086
Reputation: 11
If you handle the related business logic with a Flow Designer Flow on your Catalog Item, you can use Action: Get Catalog Variables, and then use a Send Email Action to compose the email.
The variables and its values will be available due to the Get Catalog Variables action, use the data picker to include the data in the email.
Documentation:
Upvotes: 0
Reputation: 21
You can add ${variables.[variable]}
in a notification's body and it will replace it with the variable you need to get.
You can also do this with a mail script, but I don't recommend that unless the mail script is going to be used in more than one email or the variable needs special formatting.
Upvotes: 0
Reputation: 86
Make an email script and call that email script in your notification. Please follow the below steps:
After the email is a trigger and user click the link that you have made in notification "Catalog item" will open. Regards,
PKG
Upvotes: 1