{% if company_logo %}
{{ company_name }}
{% endif %}
{{ company_name }}
{{ company_address }} · {{ company_email }}

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
{% for item in line_items %} {% endfor %}
Description Qty Amount
{{ item.description }} {{ item.qty }} {{ item.amount }}
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.") }}