Note: This requires using ezyVet’s TWIG templates. Classic templates are not supported.
This guide walks you through adding the required surcharge information to your ezyVet statement template to help ensure compliance with card brand rules and state laws.
Paste the HTML code example below into your statement template or statement footer template. You may need to adjust the styling so it matches the rest of your statement.
HTML Code Example:
<table border="1">
<tbody>
<tr>
<td colspan="2">
<p>A 3% surcharge applies to all credit card payments. No surcharge is applied to debit card, cash, or check payments.</p>
</td>
</tr>
<tr>
<td><strong>Surcharge</strong></td>
<td>{{ (((debtorcontact.finalBalance|replace({',':'','$':''})) + 0) * 0.03 )| moneyformat }}</td>
</tr>
<tr>
<td><strong>Total Balance With Surcharge</strong></td>
<td><strong>{{ (((debtorcontact.finalBalance|replace({',':'','$':''})) + 0) * 1.03) | moneyformat }}</strong></td>
</tr>
</tbody>
</table>