View Categories

Automation Date Time Mail Merge

< 1 min read

Ques: How we can mail merge the Date-Time values in Automation?

Ans: Below are the mail merge that can be used as per the Use Case:

> @{DateTime:Account_Current_DateTime,} – this will give the time in Account Time Zone and the same will be stored in the DB also. Now when this value is being displayed on UI then the DB value will be considered as UTC format and then it will convert to the logged in user’s time zone while showing on UI
@{DateTime:UTC_Current_DateTime,} – this will give the time in UTC format and it will be stored in DB. Now when this value is being displayed on UI then the DB value will be considered as UTC format and then it will convert to the logged in user’s time zone while showing on UI


Scroll to Top