2020-03-24 21:19:45 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-09-09 20:38:05 +02:00
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>Add other mailboxes to SimpleLogin.</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
2022-10-06 17:43:01 +02:00
|
|
|
If you have several email inboxes, say Gmail and Proton Mail,
|
2022-06-29 11:28:26 +02:00
|
|
|
you can add them into SimpleLogin as <b>mailboxes</b>.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
<img src="https://simplelogin.io/images/multiple-mailboxes.png"
|
|
|
|
alt="Multiple Mailboxes"
|
|
|
|
style="max-width: 100%; margin: auto; border: 1px solid">
|
|
|
|
{% call text() %}
|
|
|
|
When creating an alias, you can choose the mailbox(es) that
|
|
|
|
<b>owns</b> this alias, meaning:
|
|
|
|
<br />
|
|
|
|
1. Emails sent to this alias are forwarded to the owning mailbox(es).
|
|
|
|
<br />
|
|
|
|
2. The owning mailbox(es) can send emails from this alias.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
Please note that adding additional mailboxes is only available in the Premium plan.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_button("Create mailbox", URL ~ "/dashboard/mailbox") }}
|
|
|
|
{{ raw_url(URL ~ "/dashboard/mailbox") }}
|
2020-03-24 21:19:45 +01:00
|
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-09-12 15:51:43 +02:00
|
|
|
This email is sent to {{ to_email }} and is part of our onboarding series. Unsubscribe on
|
2020-09-09 20:38:05 +02:00
|
|
|
<a href="{{ URL }}/dashboard/setting#notification">Settings</a>
|
2020-03-24 21:19:45 +01:00
|
|
|
{% endblock %}
|