- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2019 01:10 PM
Hey guys I have a catalog item that has about 8 variables in a variable set. At the end of the workflow I would like to send an email with all the variables. I have seen several different discussions on the forum discussing this but nothin I have tried is working. I have tried the following and none of these have worked. It just shows the text as seen below in the email.
current.variables.resource_owner;
current.variable_pool.resource_owner;
As always any help is appreciated.
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2019 01:14 PM
Hi Russell,
There are many ways to do it. The easy one is this:
1) In your workflow, add a notification activity
2) In the email body, just add something like this:
My resource owner: ${variables.resource_owner}
This will get the current value from your variable.
Hope this helps,
Pedro Lopez
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2019 01:14 PM
Hi Russell,
There are many ways to do it. The easy one is this:
1) In your workflow, add a notification activity
2) In the email body, just add something like this:
My resource owner: ${variables.resource_owner}
This will get the current value from your variable.
Hope this helps,
Pedro Lopez
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2019 06:55 AM
Pedro, Thanks for the help that worked great. Marking solution as correct.