{% if company and company.logo_path %} {% endif %}
{{ company.email if company else '' }}
Invoice {{ doc.number }}
INVOICE TOTAL
${{ "%.2f"|format(doc.total) }}
{% set fee = (doc.total * 0.029 + 0.30) %} {% set total_with_fee = doc.total + fee %}
Invoice subtotal${{ "%.2f"|format(doc.total) }}
Credit card fee (2.9% + $0.30)${{ "%.2f"|format(fee) }}
Total charged${{ "%.2f"|format(total_with_fee) }}
๐Ÿ”’ Secured by Stripe ยท Your payment info is never stored on our servers