Skip to main content

Can I add Secure My Booking information to my Email/Ticket Templates?

Updated over 3 months ago

Yes, you just need to add the following Merge Tags:

{% for add_on in TRANSACTION.ADD_ONS %} {% if add_on.TYPE == "SECURE_MY_BOOKING" %}

{{ add_on.NAME }}

{{ ORGANISATION.CURRENCY_SYMBOL }} {{
"{:,.2f}".format(add_on.GROSS) }}

{% endif %} {% endfor %}

Learn more:

Did this answer your question?