{% extends "default.html" %} {% set active_page = "mailbox" %} {% block title %}Mailboxes{% endblock %} {% block default_content %}

Mailboxes

{% if not current_user.is_premium() %} {% endif %}
{% for mailbox in mailboxes %}
{{ mailbox.email }} {% if mailbox.verified %} {% else %} 🚫 {% endif %} {% if mailbox.pgp_enabled() %} 🗝 {% endif %} {% if mailbox.id == current_user.default_mailbox_id %}
Default Mailbox
{% endif %}
Created {{ mailbox.created_at | dt }}
{{ mailbox.nb_alias() }} aliases.
Edit ➡
{% endfor %}
{{ new_mailbox_form.csrf_token }}

New Mailbox

{{ new_mailbox_form.email(class="form-control", placeholder="email@example.com") }} {{ render_field_errors(new_mailbox_form.email) }}
A mailbox can't be a disposable or forwarding email address.
{% endblock %} {% block script %} {% endblock %}