Hi @SatheeskannaK @dugganab @Ivan_Mironchuk
Have one doubt that is it possible can we change the Date format in the Email Templete for the Date.It is comming like this DD:MM:YY but i want to show this like MM:DD:YY Is this passible in AJO with any Helper function. If Yes Please Let Me know how it can be done?
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Can you try it on the following lines
{% let a = context.journey.events.`815461771`.commerce.order.cancelDate %}
{%= formatDate(toDateTimeOnly(a), "EEEE, LLLL dd, YYYY") %}
formatDate function can be used in your case.
Hi @dugganab
i want the date format to be converted in this fromat el [day of the week] [day] de [month] de [year] eg : Sunday, September 7, 2014
can we do this in AJO email template
if possible can you share some example
Thanks
Views
Replies
Total Likes
Here is an example
{% let d=now %}
{%= formatDate(d, "EEEE, LLLL dd, YYYY") %}
Hi @dugganab
the above one is working
but i need to get the value from the contextual attribute and if i remove ` from the number error is coming in with and without
Views
Replies
Total Likes
Can you try it on the following lines
{% let a = context.journey.events.`815461771`.commerce.order.cancelDate %}
{%= formatDate(toDateTimeOnly(a), "EEEE, LLLL dd, YYYY") %}
Views
Likes
Replies
Views
Likes
Replies