Click HERE to see how Saviynt Intelligence is transforming the industry. |
06/27/2024 11:29 PM
I have one requirement where I need to send an email whenever an attribute is updated.
The below attributes are updated for Users.
1. Cost Center : ${user.costcenter} : Failed
2. Business Title : ${user.title} : Failed
3. Department : ${user.departmentname} : Failed
4. Functional Unit : ${Users.CustomProperty6} : Failed
5. Job Title : ${Users.CustomProperty1}
6.FirstName : ${user.firstname} : Succeed
7. LastName : ${user.lastname}, : Succeed
8. Email : ${userEmail} : Succeed
Can anyone help me to understand which dynamic attribute or in what format that attribute we need to pass .
06/28/2024 12:39 AM
@RevatiTarale Can you give some information please ?
Above content saying Sucess/Fail - what is mean?
you trigger via update user rules based on condition ? if already using all data populating via Create user form?
06/28/2024 01:02 AM
Hi @RevatiTarale ,
Can you try below:
4. Functional Unit : ${Users.CustomProperty6} : Failed ${user.customproperty16}
5. Job Title : ${Users.CustomProperty1} ${user.customproperty1}
If this helps, please consider selecting Accept As Solution and hit Kudos
06/28/2024 08:33 PM
Please validate supported variables.
Purpose :
To get what variables are present to use in the email template.
Email Template steps :
keep Advanced HTML CSS flag is checked
Keep your email Address in TO
TO /CC/BCC & Subject - Don't use any dynamic variables
Add only below code in Email Body
${this.binding.variables.each {k,v -> println "$k = $v" + "" + "br" + ">"}}
Output : using the below expression. By putting it in the email body, it will print all variable names with values, and then accordingly, you can use it: