Is it possible to add the credits applied to the p...
# general
l
Is it possible to add the credits applied to the pdf template used in the Send Email Notifications function of the Payment File Administration? I already created a custom xml template but I'm getting an error after I send the email notifications. Code I added to the standard xml template in the reply section.
<#if record.credit?has_content>
<table class="itemtable" style="width: 100%; margin-top: 10px;"><!-- start credit sublist --><#list record.credit as credit><#if credit_index==0>
<thead>
<tr>
<th align="center" colspan="3">Date</th>
<th colspan="5">Type</th>
<th align="right" colspan="3">Ref. Num.</th>
<th align="right" colspan="6">Applied To</th>
<th align="right" colspan="4">Credit Amount</th>
</tr>
</thead>
</#if><tr>
<td align="center" colspan="3" line-height="150%">${credit.creditdate}</td>
<td colspan="5">${credit.type}</td>
<td align="right" colspan="3">${credit.refnum}</td>
<td align="right" colspan="6">${credit.appliedto}</td>
<td align="right" colspan="4">${credit.amount}</td>
</tr>
</#list><!-- end credit--></table>
<br />
<br />
<table>