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

Invoice Overdue

Dear {{ customer.name }}, your invoice payment is now overdue.

Payment Overdue by {{ daysOverdue }} Days

Invoice #{{ invoice.displayInvoiceNumber }} was due on {{ invoice.dueDate|date('F d, Y') }} and remains unpaid.

{% if invoice.totalPaid > 0 %} {% endif %}
Invoice Number #{{ invoice.displayInvoiceNumber }}
Invoice Date {{ invoice.invoiceDate|date('F d, Y') }}
Original Due Date {{ invoice.dueDate|date('F d, Y') }}
Days Overdue {{ daysOverdue }} days
Invoice Total {{ invoice.formattedTotal }}
Amount Paid {{ invoice.currency.symbol }}{{ invoice.totalPaid|number_format(2, '.', ',') }}
Outstanding Balance {{ invoice.formattedBalanceDue }}
Pay Now
{% if company.bankName %}

Payment Details

Bank Name {{ company.bankName }}
Account Name {{ company.bankAccountName }}
Account Number {{ company.bankAccountNumber }}
Reference #{{ invoice.invoiceNumber }}
{% endif %}

Need Help?

If you're experiencing difficulties with payment or have questions about this invoice, please contact us immediately. We're here to help find a solution.


If payment has already been made, please reply to this email with your payment confirmation and we will update your account accordingly.

{% endblock %}