Adding due date to email template

How can I add an invoice due date to the email template for invoices?

I’ve tried {{invoice_due_date}}
{{due_date}}

So far I have…
{% for total in table.totals %}
{% if total.label == “Total” %}
{% capture invoice_total %}{{ total.text }}{% endcapture %}
{% endif %}
{% endfor %}
Hi {% assign names = recipient.name | split: " " %}{{ names.first }},

Attached is invoice {{reference}} for ${{invoice_total}}.
Payment is due by ??

Thanks!

{% for field in fields %}{% if field.label == ‘Due date’ %}{{ field.text }}{% endif %}{% endfor %}

Thank you @sharpdrivetek. It works perfectly! Much appreciated.