- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2023 07:07 PM
Hello all,
I was wondering if it is possible to send an email notification/template to a user that is referenced in a catalog item variable, let say the variable name is "first_user", i want to send an email notification/template triggered by an event in the workflow to current.variables.first_user.manager? Is this possible? In the notification , i do not see anything in the who section that would allow for this. Just want to see if its possible and if anyone else has done anything similar.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2023 09:48 PM - edited 08-04-2023 09:49 PM
Try below script.
var eventParm1 = current.variables.first_name;
gs.eventQueue("your event name", current, eventParm1);
refer below link:
Please Mark the Answer as correct solution and helpful if helped!
Kind Regards,
Ravi Chandra.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2023 07:35 PM
Hello @lando321
when triggering event, you cab add the manager as parameter in gs.eventqueue.
and in the Notification, select event Param 1 contains receiptient.
That will send notification to the variable in the form.
refer:
Please Mark the Answer as correct solution and helpful if helped!
Kind Regards,
Ravi Chandra.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2023 08:37 PM
Could you send me the link again. The link above looks like it references another issue. And thanks for replying
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2023 09:48 PM - edited 08-04-2023 09:49 PM
Try below script.
var eventParm1 = current.variables.first_name;
gs.eventQueue("your event name", current, eventParm1);
refer below link:
Please Mark the Answer as correct solution and helpful if helped!
Kind Regards,
Ravi Chandra.