{% extends "email/base.html" %} {% block title %}Application received{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="Application received" hero_subtitle=job_title hero_icon="check-circle.png" %} {% endblock %} {% block content %} {% if custom_body_html %}
{{ custom_body_html|safe }}
{% else %}

Hi {{ candidate_name }},

Thanks for applying to {{ job_title }} at {{ company_name }}.

{% if welcome_message %}

{{ welcome_message }}

{% endif %}

We will be in touch if there is a next step.

{% endif %} {% include "email/partials/_detail_row.html" with pill_label="ROLE" pill_value=job_title pill_variant="primary" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="COMPANY" pill_value=company_name pill_variant="primary" pill_border="none" pill_radius="bottom" %}

Questions about this application go to {{ company_name }}.

{% endblock %}