Notification: ONly have email address in BCC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 06:54 PM
Hi,
I have a requirement to send email notification with none in the To line and all users/groups in bcc . Is it possible to do this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 07:13 PM
CC and BCC are populated via mail script. There are examples in the product documentation here.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 07:14 PM
Hi
Yes that is possible. Do not set the recipient on the Notification instead write a mail script.
email.addAddress("bcc", user.email, user.getDisplayValue());}}
Call this from your notification and you are done!
Regards,
Muhammad
Muhammad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 04:08 AM
Thank you, I am working on this. If I want to add group should I just loop through each users emails and add them ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-10-2022 12:19 PM
email.addAddress("bcc", <<userArray>>, user.getDisplayValue());
Muhammad