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

Can we specify Application names in Request Expiry emails

smithamg
Regular Contributor
Regular Contributor
Hi Team,
 
We have a requirement where the Generic Request Expiration email needs to precisely mention the application name && entitlement name as well for which the request was made.
 
Currently we are only able to include the request number in the Email Subject and Body with a generic email template for Request expiration email.
 
Could you please help us with a variable which will help in getting the application name && Entitlement name for which the request expires.
 
Attaching the email template, we use for request expiration.
 
Thanks,
Smitha
 
2 REPLIES 2

rushikeshvartak
All-Star
All-Star

You can include 

${endpoints} for application name

${entitlementshtmltablerows} For entitlement 

For other variables use below script in email body

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


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

sk
All-Star
All-Star

I think you should be able to use ${endpoint} to get application name. If it is not working then please use below variable in email body which will expose all available binding variables.

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


Regards,
Saathvik
If this reply answered your question, please Accept As Solution and give Kudos to help others facing similar issue.