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!