Is there any way to change the Workflow notification email template(workflow.notification) "approvedwhen" date format change? It using macro and I've tried several things like ToShortDateString, FormatDate, etc. nothing works for me
The approvedwhen macro is most likely a string. What I'd suggest is to convert it to a date object, then format the date. Something like the following should work:
approvedwhen
{%ToDateTime(approvedwhen).ToShortDateString()%}
Please, sign in to be able to submit a new answer.