{% extends "default.html" %} {% set active_page = "dashboard" %} {% block title %}Alias Contact Manager{% endblock %} {% block default_content %}
To send an email from your alias to a contact, you need to create a reverse-alias,
a special email address.
When you send an email to the reverse-alias, the email will be sent from your alias to the contact.
This might seem like "magic" but trust us, only the first time is a bit awkward.
{% if alias.mailbox_id %}
{% if alias.mailboxes | length == 1 %}
Make sure you send the email from your mailbox {{ alias.mailbox.email }}.
{% else %}
Make sure you send the email from one of the following mailboxes:
{% for mailbox in alias.mailboxes %}
- {{ mailbox.email }}
{% endfor %}
{% endif %}
{% else %}
Make sure you send the email from your personal email address ({{ current_user.email }}).
{% endif %}
This Youtube video can also quickly walk you through the steps: How to send emails from an alias