{% extends 'htmx_confirmation_modal.html.twig' %} {% set sendable = valid and recipients.eligibleCount > 0 %} {% block title %}Mail wirklich senden?{% endblock %} {% block content %} {% if not valid %}
Betreff und Nachricht müssen ausgefüllt sein, bevor die Mail gesendet werden kann.
{% elseif recipients.eligibleCount == 0 %}
Der aktuelle Filter trifft auf niemanden zu, dem geschrieben werden kann.
{% else %}
Die Mail geht an {{ recipients.eligibleCount }} Teamer:innen. Das lässt sich nicht zurücknehmen.
{{ mailingDto.subject }}
{{ mailingDto.message | u.truncate(400, '…', false) | nl2br }}
{% if recipients.hasSkipped %}
{{ include('admin/teamer/_mailing_skipped.html.twig', { 'recipients': recipients }) }}
{% endif %} {% endif %} {% endblock %} {# without a complete mail there is nothing to confirm, the button only leads back to the draft #} {% block button_confirm %}{{ sendable ? 'Jetzt senden' : 'Zurück zum Entwurf' }}{% endblock %} {% block button_attribute %}{% if sendable %}hx-post="{{ path('app_admin_teamer_mailing_send') }}" hx-include="#mailing-confirm-fields"{% else %}{{ stimulus_action('modal', 'close') }}{% endif %}{% endblock %}