Formats: Use Liquid Tags to Format Dates in Emails , Step/Task Titles or in Rich Text Block Types
We use Liquid as the template language.
if you do the "Edit Email" or use the menu or the Block called "Block settings" it will let you edit the code for the email and you'll see the {{ tags like this }} which you can modify.
To add date formatting add a | to the tag (ie {{date | %a %e %b %Y }}
Day | ||
---|---|---|
Format | Output | Liquid date filter arguments |
Day Full name | Thursday | %A |
Day Shortened name | Thu | %a |
Day with leading 0 | 09 | %d |
Day without leading 0 Ordinal Day |
9 1st, 2nd, 3rd, 4th, 5th .... etc |
%e %r |
Month | ||
---|---|---|
Format | Output | Liquid date filter arguments |
Month Full name | March | %B |
Month Shortened name | Mar | %b |
Month with leading 0 | 03 | %m |
Month without leading 0 | 3 | %-m |
Year | ||
---|---|---|
Format | Output | Liquid date filter arguments |
Full year | 2024 | %Y |
Year Shortened year | 24 | %y |
FULL EXAMPLE: You could try something like replacing the default date/time: {{ task.1100706.date_and_time }} with: 1. {{ task.1100706.date_and_time "%B %e, %y" }} 2. {{ task.1100706.date_and_time "%r %b, %Y" }} That would change: 2024-07-17 03:00 to appear as 1. July 17, 24 2. 17th Jul 2025