{% extends 'email/base.html.twig' %} {% block title %}Invoice #{{ invoice.displayInvoiceNumber }} - KitsCo{% endblock %} {% block content %}
📄

Your Invoice is Ready

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 }}

Invoice Items

{% for item in invoice.items %} {% endfor %} {% if invoice.taxAmount > 0 %} {% endif %}
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 }}
{% if statusUrl %}
View Invoice Online
{% endif %} {% if invoice.invoiceTerms %}

Payment Terms

{{ invoice.invoiceTerms|nl2br }}

{% endif %} {% if company.bankName %}

Bank Details for Payment

Bank Name {{ company.bankName }}
Account Name {{ company.bankAccountName }}
Account Number {{ company.bankAccountNumber }}
{% endif %}

Next Steps

  1. Review the invoice details above
  2. Make payment using the bank details provided
  3. Include the invoice number in your payment reference
  4. We'll send you a confirmation once payment is received
{% endblock %}