{% extends email_txt_theme %}
{% load aldryn_forms_tags i18n %}
{% block email_content %}
{% render_notification_text email_notification 'body_text' as text_message %}
{% if text_message %}
{{ text_message|safe }}
{% else %}
{% blocktranslate %}Form name: {{ form_name }}{% endblocktranslate %}
{% include "aldryn_forms/emails/includes/form_data.txt" %}
{% endif %}
{% endblock email_content %}
