{% extends "base.html" %} {% block title %}Add User - Email Server{% endblock %} {% block content %}

Add New User

The email address for authentication and sending
Minimum 6 characters
The domain this user belongs to
If checked, user can send emails as any address in their domain. Otherwise, user can only send as their own email address.
Permission Levels
  • Regular User: Can only send emails from their own email address
  • Domain Admin: Can send emails from any address in their domain (e.g., noreply@domain.com, support@domain.com)
{% if domains %}
Available Domains
{% for domain in domains %}
{{ domain.domain_name }}
Created: {{ domain.created_at.strftime('%Y-%m-%d') }}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}