A mailbox is just another personal email address. When creating a new alias, you could choose
the
mailbox that owns this alias, i.e:
- all emails sent to this alias will be forwarded to this mailbox
- from this mailbox, you can reply/send emails from the alias.
When you signed up, a mailbox is automatically created with your email {{ current_user.email }}
The mailbox doesn't have to be your email: it can be your friend's email
if you want to create aliases for your buddy.
{% 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.