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

"Email Template Binding Variables" to update the email with Year as current year in Campaigns

Arpit_Tiwari
New Contributor III
New Contributor III

Hi Team,

1. Can you please help me to share the "Email Template Binding Variables" to update the email with Year as current year.

for e.g. I am going to configure below email notification for Campaign creation, but the subject line is having 2024 as the year and also it is there in email content. 

Could you please help me to know the variable which will automatically generate the current execution year so we don't need to "Edit" the email template every year.

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Subject : Campaign 2024


Dear Reviewers,

We kindly inform you that the 2024 Campaign starts today.

Kind regards,

Saviynt Team

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------'

2. Can we send email reminder on adhoc basis once the Campaign is launched? This is required for the case where we utilized all 5 reminders which are OOTB available in Saviynt but still in the running campaigns certifiers have not completed their review and also want to avoid manual reminder. In such case, we still need to send additional reminders to them which are not configured in the system.

 

thanks

Arpit

4 REPLIES 4

armaanzahir
Valued Contributor
Valued Contributor

@Arpit_Tiwari ,

 

Can you try using the below variable?

${Calendar.getInstance().get(Calendar.YEAR)}

This should work

Also, OOTB campaign configurations do not allow more than 5 reminders. You can raise an idea in the ideas portal of Saviynt for an OOTB solution.

Solved: Can we send more than 5 email reminders in Campaig... - Saviynt Forums - 26384

Alternately, you can leverage the use of analytics to send out notifications to managers.  

Regards,
Md Armaan Zahir

SumathiSomala
All-Star
All-Star

@Arpit_Tiwari 

1.Try below variable

${Calendar.getInstance().get(Calendar.YEAR)}

SumathiSomala_0-1702909026098.png

2.Currently campaigns are limited to a total of 5 reminders.

Already Idea is under validation.

Make campaign notifications more flexible | Saviynt Ideas Portal

Alternatively ,You can try with analytics to send reminder notifications.

 

 

Regards,
Sumathi Somala
If this reply answered your question, please Accept As Solution and give Kudos.

rushikeshvartak
All-Star
All-Star
  1. Binding variable for Year is - ${Calendar.getInstance().get(Calendar.YEAR)}
  2. Currently only 5 Reminder are supported please upvote below idea which is raised for similar requirement https://ideas.saviynt.com/ideas/EIC-I-4764 

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

adarshk
Saviynt Employee
Saviynt Employee

If the requirement is to print the current year, you can try retriving the year using java methods and format it to get only year.

Sample:
${new Date()}
${Calendar.getInstance().getTime()}
${Calendar.getInstance().getTime().format('yyyy-MM-dd')}