{% extends 'emails/base.html' %}
{% block header_recipient -%}
{first_name}
{%- endblock %}
{% block body %}
{% block body_text %}
We're contacting you because you registered for the event {event_title}.
You can view your registration details on this page:
{link}
{% endblock %}
{% if session %}
Best regards
{{ session.user.full_name }}
{% endif %}
{%- endblock %}
{% block footer_title %}Registration{% endblock %}
{% block footer %}
{# Show default footer if sent from command line #}
{% if not session.user %}
{{ super() }}
{% endif %}
{% endblock %}