{% extends 'email/base.html.twig' %} {% block title %}Payment Received - Invoice #{{ invoice.displayInvoiceNumber }}{% endblock %} {% block content %}
Thank you, {{ customer.name }}. We've received your payment.
Your payment of {{ payment.currency.symbol }}{{ payment.amount|number_format(2, '.', ',') }} has been successfully recorded.
| Invoice Number | #{{ invoice.displayInvoiceNumber }} |
| Payment Amount | {{ payment.currency.symbol }}{{ payment.amount|number_format(2, '.', ',') }} |
| Payment Date | {{ payment.paymentDate|date('F d, Y') }} |
| Payment Method | {{ payment.paymentMethod.label }} |
| Reference Number | {{ payment.referenceNumber }} |
| Invoice Total | {{ invoice.formattedTotal }} |
| Total Paid | {{ invoice.currency.symbol }}{{ invoice.totalPaid|number_format(2, '.', ',') }} |
| Balance Due | {% if invoice.balanceDue <= 0 %} PAID IN FULL {% else %} {{ invoice.currency.symbol }}{{ invoice.balanceDue|number_format(2, '.', ',') }} {% endif %} |
This invoice has been paid in full. Thank you for your business!
A balance of {{ invoice.currency.symbol }}{{ invoice.balanceDue|number_format(2, '.', ',') }} is still outstanding on this invoice.
This email serves as your payment receipt. Please keep it for your records.
{% endblock %}