{# SPDX-FileCopyrightText: 2025-2026 TU Wien. SPDX-License-Identifier: MIT #} {%- extends config.BASE_TEMPLATE %} {%- block page_body %}

Outreach email

Metadata

Content

Some users disable the rendering of HTML in their emails, e.g. to be on the safe side about loading and executing code from untrusted sources. In such cases, the plain-text variant will be displayed instead.
Note: If either of the formats is omitted, very simple transformations will be used to generate the missing content. For complex content, it is recommended to provide manual input for both formats.

{%- if not has_data %} {%- elif sent_email %} {%- elif not sent_email %} {%- endif %}
{%- if has_data %}

Preview

The following email with the subject {{ subject or "No Subject" }} will be sent to {{ users|length }} recipients. This will take about {{ users|length }} seconds.

HTML-formatted message

Plain-text message

{{ body|safe }}

Recipients

The email will be sent to {{ users|length }} recipients.

    {%- for user in users %}
  • {{ user.email }}
  • {%- endfor %}
{%- endif %}
{%- endblock %} {%- block css %} {{ super() }} {{ webpack['invenio-theme-tuw-compose-outreach.css'] }} {%- endblock css %} {%- block javascript %} {{ super() }} {{ webpack['invenio-theme-tuw-compose-outreach-editor.js'] }} {%- endblock %}