Configure payment receipts to show surcharge information
If your organization uses surcharges for PayJunction or Windcave payments, your receipts must show surcharge information. Surcharge information is mandatory for surcharge regulations.
Browse documentation
list_alt
If your organization uses surcharges for PayJunction or Windcave payments, your receipts must show surcharge information. Surcharge information is mandatory for surcharge regulations.
{% if payment.getSurchargeAmount > 0 %}
<table style="width:700px">
<tbody>
<tr>
<td><strong>Surcharge</strong></td>
<td>{{ payment.getSurchargeAmount|moneyformat }}</td>
</tr>
<tr>
<td><strong>Total Paid</strong></td>
<td><strong>{{ (payment.getSurchargeAmount + payment.amount)|moneyformat }}</strong></td>
</tr>
</tbody>
</table>
<div>
<p>A surcharge was applied to cover our costs of credit card acceptance.</p>
</div>
{% endif %} As a result, when a client makes payment with a payment card, the receipt shows:If a client does not use a credit card, the receipt does not show the surcharge information.