{% comment %}
SPDX-FileCopyrightText: 2026-present Tobias Kunze
SPDX-License-Identifier: AGPL-3.0-only WITH LicenseRef-Pretalx-AGPL-3.0-Terms
{% endcomment %}
{% load i18n %}
{% if mail.state == "sending" %}
{% translate "Sending" context "email status" %}
{% elif mail.state == "sent" %}
{% translate "Sent" context "email status" %}
{% elif mail.has_error %}
{% translate "Failed" context "email status" %}
{% if mail.error_data.smtp_code %}SMTP
{{ mail.error_data.smtp_code }}{% else %}{{ mail.error_data.type }}{% endif %}
{% if mail.error_data.error %}
{{ mail.error_data.error }}{% endif %}
{% else %}
{% translate "Draft" context "email status" %}
{% endif %}