Here is how to set up default content for your registration confirmation emails.

Go to Settings/Emails and scroll down to the Order Email Settings section

You'll see the "out of the box" default content. You can edit this. Some of the popular personalisation placeholders are:

{{ order.firstname }} - returns orderer's first name

{{ order.lastname }} - returns orderer's last name

{{ event.name }} - returns event name

{{ event.venue.name_and_town }} - returns event venue name and town

{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %l:%M%P' }} - {{event.end_at| l:'%l:%M%P'}} - returns event start date and time and end time if ends on the same day

{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }} - {{ event.end_at | l: '%A %e %B %Y, %H:%M' }} - returns start date and time and end date and time if event finishes on a different day

If you want the template to select the appropriate start date time/end date time combination, please use the following:

{% if event.has_end_date? %}
{% if event.start_at_date == event.end_at_date %}
{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %l:%M%P' }} - {{event.end_at| l:'%l:%M%P'}}
{% else %}
{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }} - {{event.end_at| l:'%H:%M'}} 
{% else %}
{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }} - {{ event.end_at | l: '%A %e %B %Y, %H:%M' }}{% endif %}
{% else %}
{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }}{% endif %}

You can also filter the content dependent on the attendee's details and/or answers to the registration form questions, but you would do this at the event level and not the account level. See this article for more information.

If you are using the automatically generated PDF tickets as an attachment, leave in the line that says "{% if account.attach_ticke_pdf? %}Your tickets are attached to this email.{% endif %}"

Once you've added your default content click Save Settings and don't forget to test! Click on Preview Email to ensure the static content is correct.

See the example below and the preview.

Here's the content if you'd like to use it or modify it:

Hi {{ order.firstname }},

Thank you for registering to attend {{ event.name }} at {{ event.venue.name_and_town }}.

Event date and time: {% if event.has_end_date? %}{% if event.start_at_date == event.end_at_date %}
{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %l:%M%P' }} - {{event.end_at| l:'%l:%M%P'}}
{% else %}{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }} - {{event.end_at| l:'%H:%M'}}{% else %}{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }} - {{ event.end_at | l: '%A %e %B %Y, %H:%M' }}{% endif %}{% else %}{{ event.start_at |display_in_timezone | l: '%A %e %B %Y, %H:%M' }}{% endif %}

{% if account.attach_ticket_pdf? %}Your tickets are attached to this email and we look forward to seeing you on the day.{% else %}We look forward to seeing you on the day.{% endif %}

Mitingu Events Team

And here is how it previews (ticket attachments were switch off on this event).