Hi,
How to stop the email notification from being triggered if the access request is placed for one particular entitlement.
Hi,
How to stop the email notification from being triggered if the access request is placed for one particular entitlement.
HI @Manju22,
Try this.
Ex. #if(<add_condition>)#stop #{else}reminaing subject line#end
Thanks.
Sample email template
If I write condition like this, its not working.
#if($detail.name.toString().contains(“Azuregroupname”))#stop#end ${requesterName} Has Requested Access on Your Behalf.
Add #end in the end of the subject line.
#if($detail.name.toString().contains("Azuregroupname"))#stop#{else} ${requesterName} Has Requested Access on Your Behalf.#end
its not working as well.
Can you give this a try in the subject: #if($detail.name.toString().contains(“Azuregroupname”))no_send#{else} ${requesterName} Has Requested Access on Your Behalf.#end
This is not working too.
Is the intent to avoid the complete email notification or just suppress one entitlement in the body?
I like to suppress the email notification if one particular entitlement is being requested. Actually, we are requesting that entitlement using workflow (manage access). I dont want end user to be notified about the internal process.
Are you using the OOTB “LCM Provisioning” workflow or a custom one?