{% extends "email/base.html" %} {% block title %}{{ email_title|default:"Your offer" }}{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="Your offer" hero_subtitle=job_title hero_icon="check-circle.png" hero_accent_icon="confetti.png" %} {% endblock %} {% block content %} {% if custom_body_html %}
{{ custom_body_html|safe }}
{% else %}

Hi {{ candidate_name }},

{{ company_name }} is pleased to offer you {{ job_title }}. A PDF copy of the offer letter is attached for your records.

{% 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" %} {% if compensation_text %} {% include "email/partials/_detail_row.html" with pill_label="COMPENSATION" pill_value=compensation_text pill_variant="gray" %} {% endif %} {% if start_date_display %} {% include "email/partials/_detail_row.html" with pill_label="START DATE" pill_value=start_date_display pill_variant="gray" %} {% endif %} {% if expires_display %} {% include "email/partials/_detail_row.html" with pill_label="RESPOND BY" pill_value=expires_display pill_variant="warning" pill_border="none" pill_radius="bottom" %} {% else %} {% include "email/partials/_detail_row.html" with pill_label="NEXT STEP" pill_value="Accept or decline with the button below" pill_variant="gray" pill_border="none" pill_radius="bottom" %} {% endif %}
{% if cta_url %} {% include "email/partials/_cta.html" with cta_url=cta_url cta_label=cta_label|default:"Respond to offer" %} {% endif %}

This is a soft offer from {{ company_name }} via Praxicraft Assess. It is not an electronic signature request. If you were not expecting this email, you can ignore it.

{% endblock %}