> ## Documentation Index
> Fetch the complete documentation index at: https://support.getskara.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Add Today's Date in an Email Template?

To add today's date in an email template, You can use special word "today" with date function. Add the following attribute in the email template:

**Input**

```highlight theme={null}
This page was last updated at &#123;&#123; "today" | date: "%Y-%m-%d" &#125;&#125;
```

**Output**

```highlight theme={null}
This page was last updated at 2024-03-12
```

<img src="https://mintcdn.com/salesmate/JP74dfAwJJETAXuV/emails/managing-email-templates/images/AddToday1.png?fit=max&auto=format&n=JP74dfAwJJETAXuV&q=85&s=d3b6ea0e3c9f69ed75343a387394100e" alt="AddToday1.png" width="2302" height="1284" data-path="emails/managing-email-templates/images/AddToday1.png" />

You can also add the current time with the date.

* **Input:**

```highlight theme={null}
This page was last updated at &#123;&#123; "today" | date: "%Y-%m-%d %H: %M" &#125;&#125;
```

* **Output:**

```highlight theme={null}
 This page was last updated at 2024-03-12 19:06
```

<img src="https://mintcdn.com/salesmate/JP74dfAwJJETAXuV/emails/managing-email-templates/images/AddToday2.png?fit=max&auto=format&n=JP74dfAwJJETAXuV&q=85&s=e75acdf082e596f2e3e8965d29a7bfe0" alt="AddToday2.png" width="2184" height="1238" data-path="emails/managing-email-templates/images/AddToday2.png" />
