Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

binding variable for email template -customproperty

Srinath1
New Contributor II
New Contributor II

Hi ,

In email templates we are trying to get the customproperty17 value and departmentname value

we have tried these binding variables , not able to get the desired output 

${User.customproperty17},${User.DEPARTMENTNAME}

${Users.DEPARTMENTNAME},${Users.customproperty17}

is there anything we are missing ? 

regards ,

Srinath 

 

 

3 REPLIES 3

nimitdave
Saviynt Employee
Saviynt Employee

@Srinath1 , please let us know , in which email template you need this. Like from where the email is invoked.

adriencosson
Valued Contributor
Valued Contributor

Hi @Srinath1 ,

In email templates where user's data is available the binding variable is case sensitive.

Therefore you need to user the below convention :

${user.customproperty17}

Refer to the users table here : https://docs.saviyntcloud.com/bundle/SSM-DB-Schema-Reference-v55x/page/Content/Identity-Repository-S... 

Documentation to manage email templates and check for available variables : https://docs.saviyntcloud.com/bundle/EIC-Admin-v2021x/page/Content/Chapter06-EIC-Configurations/Crea... 

Regards,
Adrien COSSON

dgandhi
All-Star
All-Star

Use below to find list of available binding variable.

You can find all exposed variables using below script in email body

 

${this.binding.variables.each {k,v -> println "$k = $v" + "<" + "br" + ">"}}

 

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.