Skip to main content

Airtable Newbie here!  I have an email automation that sends me a reminder when an item in my airtable is approaching the due date.  I want to have a field (due date) appear in the email to be in red, so that it i see it clearly.  Can I do that in Airtable?  If so, how do I write it or where do I write that? Is it surrounding the field name in the body of the email?

It should look like this:

The records are due to the requester on August 5, 2024.

I would suggest to use HTML like this, within the Message content within the Send an email action

<p>
    <span style="color: black;">The records are due to the requester on </span>
    <span style="color: red;"> Date field name </span>
</p>