Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/13/2024 10:40 AM
Hi Team,
task completed email template is not aligning, below template
Request for ${user.firstname} to be granted access completed.
See details below.
User ID: ${user.employeeid}
Name: ${user.firstname}${user.lastname}
Request #: ${requested}
Access: ${entitlement_value?.entitlement_value}
Comments: ${task.comments} ?
Please help me in aligning
08/13/2024 10:53 AM
Content As HTML : True
Else share current html code
08/13/2024 11:09 AM
Request for ${user.firstname} to be
granted access completed. <br>See details below.<br><br>User ID: ${user.employeeid}
<br>Name: ${user.firstname}${user.lastname}
<br>Request #: ${requested}
<br>Access:
${entitlement_value?.entitlement_value}
<br>Comments: ${task.comments}
? <br>
<br>Thanks,
<br><u>xxxx xxxx UM Team</u>
<br>If you have any
questions regarding this email, please contact the UM Team at xxxx@xxxxxx.com.
08/13/2024 12:14 PM - edited 08/13/2024 12:29 PM
<p>Request for ${user.firstname} to be granted access completed.</p>
<p>See details below.</p>
<p>User ID: ${user.employeeId}<br>
Name: ${user.firstname} ${user.lastname}<br>
Request #: ${requestid}<br>
Access: ${entitlement}<br>
Comments: ${task.comments}</p>
<p>Thanks,<br>
<u>xxxx xxxx UM Team</u></p>
<p>If you have any questions regarding this email, please contact the UM Team at <a href="mailto:xxxx@xxxxxx.com">xxxx@xxxxxx.com</a>.</p>
08/13/2024 12:21 PM
Try this @KG
<p>Request for ${user.firstname} to be granted access completed.</p>
<p>See details below.</p>
<p>User ID: ${user.employeeId}<br>
Name: ${user.firstname} ${user.lastname}<br>
Request #: ${requested}<br>
Access: ${entitlement_value?.entitlement_value}<br>
Comments: ${task.comments}</p>
<p>Thanks,<br>
<u>xxxx xxxx UM Team</u></p>
<p>If you have any questions regarding this email, please contact the UM Team at <a href="mailto:xxxx@xxxxxx.com">xxxx@xxxxxx.com</a>.</p>
08/15/2024 06:57 AM
@KG Please try below and let us know ,and removed requestid and entitlment
<p>Request for ${users?.firstname} to be granted access completed.</p>
<p>See details below.</p>
<p>User ID: ${users?.employeeId}<br>
Name: ${users?.firstname} ${users?.lastname}<br>
Comments: ${task.comments}</p>
<p>Thanks,<br>
<u>xxxx xxxx UM Team</u></p>
<p>If you have any questions regarding this email, please contact the UM Team at <a href="mailto:xxxx@xxxxxx.com">xxxx@xxxxxx.com</a>.</p>
08/19/2024 09:36 AM
Hi Team,
It is not picking up the variable just printing the email template
08/19/2024 09:46 AM
Share email template configs screenshot
08/19/2024 10:31 AM
08/19/2024 10:35 AM
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: