Email Notification from Workflow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 02:20 PM
Hi All,
i need help on this event notification sending from workflow.
Details: how to insert the Variable value into the event notification from workflow which is submitted in Catalog item.
Hello <insert names of “Requested by” person and also those individuals selected owners> |
The following network file share has been created; |
Network name: <insert Specify network file share name data> |
Requested by: <insert "requested by”> |
Network owners: <insert owner name’s> |
Your link: <insert from the variable field in task> |
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2023 02:43 PM
Hi @Ram050670 , you'll have to use the 'Get catalog variables' action in the flow designer.
Johnny
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 05:42 AM
@JohnnySnow Hi, i am using Workflow not the flow designer. can you help me on it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 06:22 AM
You should just be able to use the current.variables in your script
current.variables.<insert variable name>
You might find it easier to have the flow trigger an event that will send the notification so you have more control over the available fields and mail scripts etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2023 06:30 AM
Hi @Ram050670, You can use the below syntax to get the variables data into the workflow notification.
${current.variables.<your_variable_name>}
Regards,
Sunil