{% extends "base.html" %} {% load django_bootstrap5 %} {% load bootstrap_helpers %} {% block title %}Send mail{% endblock %} {% block headline %}Send mail{% endblock %} {% block content %}
Click the button below to send the following notification via mail to {{ notification.user.email }}:
Subject: {{ notification.subject }}
{{ notification.body }} {% if not user.communitymember or user.communitymember.email.is_verified %} {% else %} {% bootstrap_alert "Your email is not verified so you cannot send this mail here." alert_type='error' %} {% endif %} {% endblock %}