- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-20-2015 04:39 PM
Do you know how to prevent a specific notification to be sent to the user delegates?
In a system shared by IT and HR, we need to have the delegation available for IT, available for HR Fulfillers, but the requestor personal notifications should not be shared with your delegates...
The business case is simple:
- Mike, Service Desk user, has a personal HR case: an HR case is created where he's set as requestor
- Mike is going away for 2 weeks on holidays, so he sets up a colleague (John) as delegate
- While he's away, HR is updating his HR case, so he (Mike) receives an email with the new additional comments with some personal information
=> But because of the delegation, his colleague John is in CC of the notification...
I can't see an option in the email definition to force to only send notifications to the users / groups defined, and not their delegate.
The only design I can see is "dangerous" (onBefore Insert BR, I can detail it if you want) as more than 7000 emails are sent everyday...
Inactivating the delegation is not an option (as it's very useful for 99% of the notifications).
Any idea of a nice solution for this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-22-2015 11:48 PM
I've the same issue (IT and facilities) and I've found a little workaround...
In the notification, I don't put the users in the "who will receive" but I add them in cc with the mail script email.addAddress("cc",email,name);
In this case, the delegates are bypassed.
but it refuse to send a mail without anybody in the "to", si I just put a mail address created for this specific reason.
it's ugly but it works
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-22-2015 12:52 PM
Hi everyone,
I tried to use email.addAddress menthod Xavier mentioned.
I inserted test email.addAddress("cc", "john.copy@example.com","John Roberts");
but the email address that i use is not being copied in the recipient field. can you help me? We are using a dublin version.
Thanks,
Jay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2015 10:24 AM
Jay, you'll need to wrap it in a mail script. I just used the current record information to make it easier.
<mail_script>
email.addAddress("cc", current.opened_for.email, current.opened_for.name);
</mail_script>
For our HR emails we had to end up sending all the user communications to the Case Manager for the record and using this to CC the user. Not pretty, but it does bypass adding the delegates to the email.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 02:25 PM
Check out the new "Exclude Delegates" option that can be specified on a notification. This will stop a notification from being sent to delegates of recipients that are specified in the users, users/groups in fields, or groups fields on a notification.
Documentation:
Create an email notification see "Exclude Delegates"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-09-2017 07:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-20-2024 09:01 AM
which view is this in?