Payment Receipt
Receipt #{{ receipt_number }}
Amount Paid
{{ total }}
{{ status | default("Paid") }}
Transaction Details
Date
{{ receipt_date }}
Receipt Number
{{ receipt_number }}
Payment Method
{{ payment_method }}
Bill To
{{ customer_name }}
{% if customer_email %}
Email
{{ customer_email }}
{% endif %}
{% if line_items %}
Items
| Description |
Qty |
Amount |
{% for item in line_items %}
| {{ item.description }} |
{{ item.qty }} |
{{ item.amount }} |
{% endfor %}
Subtotal
{{ subtotal }}
{% if tax %}
{{ tax_label | default("Tax") }}
{{ tax }}
{% endif %}
Total Paid
{{ total }}
{% endif %}
Thank you for your payment!
{{ thank_you_message | default("This receipt confirms your payment has been received and processed.") }}