{% 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, says friend@example.com, you need to:
1. Create a special email address called reverse-alias for friend@example.com using the form below
2. Send the email to the reverse-alias instead of friend@example.com
3. SimpleLogin will send this email from the alias to friend@example.com for you
This might sound complicated 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 the 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 %}
This is because only the mailbox that owns the alias can send emails from it.
{% else %}
Make sure you send the email from your personal email address ({{ current_user.email }}).
{% endif %}