Bright Plugins is acquiring WordPress and WooCommerce plugins. Let's Connect

Advanced Autoresponder Markup

1 min read Updated April 16, 2026 By the Bright Plugins team

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 %}
   
    {% if ticket.qty > 0 %}
  • {{ ticket.label }} - {{ ticket.qty }}
  • {% endif %}
{% endfor %}

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

Updated on April 16, 2026 · Need help? Open a support ticket