While I’m still hoping for this to be implemented, does anyone know email template variables are available for a Customer Statement?
These are the ones I know about:
{{recipient.code}}
{{recipient.name}}
{{recipient.address}}
{{recipient.email}}
{{recipient.telephone}}
None are mentioned in the documentation for Customer Statements: Use email templates | Manager
If you’re aware of an email template variable not mentioned above, please share it!
I am looking for variables that work for the closing balance, total debits, total credits, etc.
1 Like
this code was provided to me on another post by @Ealfardan
<table>
{% for total in table.totals %}
<tr>
<td colspan="{{ table.columns | size | minus:1 }}" style="text-align: end; padding: 5px 10px{% if total.emphasis == true %}; font-weight: bold{% endif %}">{{ total.label }}</td>
<td style="border-left-width: 1px; border-left-style: solid; border-left-color: #000; border-top-width: 1px; border-top-style: solid; border-top-color: #000; border-right-width: 1px; border-right-style: solid; border-right-color: #000; text-align: right; white-space: nowrap; border-bottom-width: 1px; border-bottom-color: #000000; border-bottom-style: solid; padding: 5px 10px{% if total.emphasis == true %}; font-weight: bold{% endif %}">{{ total.text }}</td>
</tr>
{% endfor %}
</table>
this is the link to that post… Email Templates - #10 by Ealfardan
1 Like
ShaneAU
3
Thanks. I wish there was a way to know what all these variables are. A list in the app that can be referenced.
1 Like