{% extends "base.html" %} {% block title %}Edit User - SMTP Management{% endblock %} {% block content %}
Edit User
Only enter a password if you want to change it
Allow this user to send emails using any address within their domain
Cancel
Current User Details
Email:
{{ user.email }}
Domain:
{% for domain in domains %} {% if domain.id == user.domain_id %} {{ domain.domain_name }} {% endif %} {% endfor %}
Status:
{% if user.is_active %} Active {% else %} Inactive {% endif %}
Domain Sender:
{% if user.can_send_as_domain %} Yes {% else %} No {% endif %}
Created:
{{ user.created_at.strftime('%Y-%m-%d %H:%M') }}
User Permissions
Domain Sender Permission
  • Enabled: User can send emails using any address in their domain (e.g., admin@domain.com, support@domain.com)
  • Disabled: User can only send emails from their own email address
{% endblock %} {% block extra_js %} {% endblock %}