{% extends "base.html" %} {% block title %}Edit Sender - SMTP Management{% endblock %} {% block content %}
Edit Sender
Only enter a password if you want to change it
Allow this sender to send emails using any address within their domain
If enabled, the full message body and attachments will be stored and viewable in logs. Otherwise, only headers and subject are stored.
Cancel
Current Sender Details
Email:
{{ sender.email }}
Domain:
{% for domain in domains %} {% if domain.id == sender.domain_id %} {{ domain.domain_name }} {% endif %} {% endfor %}
Status:
{% if sender.is_active %} Active {% else %} Inactive {% endif %}
Domain Sender:
{% if sender.can_send_as_domain %} Yes {% else %} No {% endif %}
Store Message:
{% if sender.store_message_content %} Full Message {% else %} Headers Only {% endif %}
Created:
{{ sender.created_at.strftime('%Y-%m-%d %H:%M') }}
Sender Permissions
Domain Sender Permission
  • Enabled: Sender can send emails using any address in their domain (e.g., admin@domain.com, support@domain.com)
  • Disabled: Sender can only send emails from their own email address
{% endblock %} {% block extra_js %} {% endblock %}