Advanced Autoresponder Markup

The premium ‘gold’ plan brings the power Twig markup to the auto responder messages, enabling conditional logic.

This is useful if you need to display different content depending on information on the registration such as ticket type when multiple ticket types are used.

Data elements available

{{event_id}}
{{name}}
{{email}}
{{places}}
{{user_defined_1}}
{{user_defined_2}}
{{event}}   - title
{{date}}
{{enddate}}
{{start}}
{{finish}}
{{location}}
{{paymentlink}}
{{ticketno}}   - event level registration ticket no
{{multi_tickets}} - an array containing for each ticket
   {{label}}
   {{desc}}
   {{ticket_no}}  - ticket no if needed for different ticket types
   {{qty}}   - quantity requested

More data items will be added on request.

An example would be create a list of multi tickets

{% for ticket in multi_tickets %}
   <ul>
%   {% if ticket.qty > 0 %}
            <li>{{ ticket.label }} - {{ ticket.qty }}</li>
   {% endif %}
   </ul>
{% endfor %}





Reference for Twig tags can be found here https://twig.symfony.com/doc/3.x/tags/index.html

Was this helpful?

Next Article

Getting Started