{% extends 'email/base.html.twig' %} {% block title %}Invoice #{{ invoice.displayInvoiceNumber }} - KitsCo{% endblock %} {% block content %}
Hi {{ invoice.effectiveBillingName }}, please find your invoice details below.
| Invoice Number | #{{ invoice.displayInvoiceNumber }} |
| Invoice Type | {{ invoice.type.value|capitalize }} |
| Invoice Date | {{ invoice.invoiceDate|date('F d, Y') }} |
| Due Date | {{ invoice.dueDate|date('F d, Y') }} |
| Amount Due | {{ invoice.formattedTotal }} |
| Description | Qty | Amount |
|---|---|---|
| {{ item.description }} | {{ item.quantity }} | {{ invoice.currency.symbol }}{{ item.amount|number_format(2, '.', ',') }} |
| Subtotal | {{ invoice.currency.symbol }}{{ invoice.subtotal|number_format(2, '.', ',') }} | |
| Tax ({{ invoice.taxRate }}%) | {{ invoice.currency.symbol }}{{ invoice.taxAmount|number_format(2, '.', ',') }} | |
| Total | {{ invoice.formattedTotal }} | |
{{ invoice.invoiceTerms|nl2br }}
| Bank Name | {{ company.bankName }} |
| Account Name | {{ company.bankAccountName }} |
| Account Number | {{ company.bankAccountNumber }} |