Jump to content
  • 0

add total on invoice?


Question

1 answer to this question

Recommended Posts

  • 0
Posted

You may want to take a look at the tags described in the documentation for that email template.

The email template can be sent with multiple invoices, so you will need to iterate over each one and can display the invoice total, e.g.:

{% for invoice in invoices %}
Invoice ID: {invoice.id_code}
Amount Due: {invoice.due}
Invoice Total: {invoice.total}
Pay now at https://{invoice.payment_url}.
{% endfor %}

 

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...