{% extends 'base.html' %} {% block title %}Test Email - Notifications{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Test Email

Send a test email to verify your configuration

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Send Test Email
{% csrf_token %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
Enter a valid email address to receive the test email.
{{ form.subject }} {% if form.subject.errors %}
{{ form.subject.errors.0 }}
{% endif %}
{{ form.message }} {% if form.message.errors %}
{{ form.message.errors.0 }}
{% endif %}
Enter the email message content. HTML is supported.
Cancel
Important Notes
  • This will send an actual email to the specified address
  • Make sure your email settings are properly configured in Settings
  • Check your spam folder if the email doesn't arrive in the inbox
  • The delivery status will be logged and viewable in Email Logs
  • HTML content is supported in the message field
{% endblock %} {% block extra_js %} {% endblock %}