Is there a way to receive (cc/bcc) all email notifications that IIQ sent?

I’m looking to see if there is an OOTB option that we can enable to receive a copy of all the emails that’s been sent out of IIQ (fine with retrieving it from “Default From Address” sent items folder too)

You can modify the EmailTemplate XML and directly set the “cc” parameter:

For example:

<EmailTemplate cc="$!identity.manager.email" …

<EmailTemplate cc="[email protected]"

3 Likes

That does the trick, I was looking for some kind of global settings but editing a bunch of email templates wouldn’t be tough, Thank you! Appreciate the quick turn around!!

Another way to do this could be to use a custom EmailNotifier class as documented here: https://community.sailpoint.com/t5/Technical-White-Papers/Best-Practices-Email-Configuration/ta-p/75930

2 Likes

Also, check the setCc and setBcc methods on the EmailTemplate class, which can be found in the java doc. When I find that I don’t want the CC or BCC permanently set on a given template, I use one of these methods to set the CC or BCC in a script or rule, then clear the value afterward.

This gives me the ability to control who gets a CC or BCC situationally. The primary use case here, besides simply BCC’ing myself, is to set the CC for provisioning notifications to include the requester, assuming it’s not the manager doing the requesting.