- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 12:19 AM
Hello,
I am looking for a solution to configure a notification in a way that an email is sent to the group mailbox instead of all members of approval group.
how this can be done?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 03:50 AM
In that case, you have to trigger the notification with the help of 'event'.
The event will be triggered by business rule on the sysapproval_approver table and GlideRecord to approval table as get the email address of group and then you will pass the group email in parm1 OR parm2 and then in the notification 'who will receive' check the checkbox for the same.
gs.eventQueue('<replace_event_name>', <pass_the_group_email>);
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 12:48 AM - edited 07-01-2024 12:50 AM
Hi @dev_K ,
Follow as below:
Click on the group, + icon will appear
Now, click on that + and from left search group email, move it to right:
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 12:52 AM
This is what i am doing but i do not see 'group email' when i expand the options...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 12:59 AM
I just noticed, you are on sysapproval_approver table.
You have to dot walk as below:
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 01:03 AM
OK, I did it that way and I have tested it by submitting a catalog request with approval and I see in the log that emails were sent to each member of the group... any ideas why?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2024 01:07 AM
If the Include member checkbox is ticket, the email is sent to all group members:(also mentioned by Atul)
Uncheck it and try.
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.