app-MAIL-temp/templates/emails/com/onboarding/mailbox.html

35 lines
1.2 KiB
HTML
Raw Normal View History

2020-03-24 21:19:45 +01:00
{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
2020-09-09 20:38:05 +02:00
{% call text() %}
If you have several email addresses, e.g. Gmail for work and Protonmail for personal uses,
you can add them into SimpleLogin as <b>mailboxes</b>.
{% endcall %}
2020-03-24 21:19:45 +01:00
<img src="https://simplelogin.io/blog/mailbox-gmail.png" alt="Mailbox Gmail">
<img src="https://simplelogin.io/blog/mailbox-protonmail.png" alt="Mailbox Protonmail">
2020-09-09 20:38:05 +02:00
{% call text() %}
When creating an alias, you can choose the mailbox that <b>owns</b> this alias, meaning: <br>
1. Emails sent to this alias are forwarded to the owning mailbox. <br>
2. The owning mailbox can send or reply emails from this alias.
{% endcall %}
2020-03-24 21:19:45 +01:00
2020-09-09 20:38:05 +02:00
{% call text() %}
A mailbox doesn't have to be <b>your</b> email address: you can also create aliases for your friend by adding
his/her email address as your mailbox.
{% endcall %}
2020-03-24 21:19:45 +01:00
2020-08-14 16:23:29 +02:00
{{ render_button("Create mailbox", URL ~ "/dashboard/mailbox") }}
2020-03-24 21:19:45 +01:00
2020-08-14 16:23:29 +02:00
{{ raw_url(URL ~ "/dashboard/mailbox") }}
2020-03-24 21:19:45 +01:00
{% endblock %}
{% block footer %}
This email is sent to {{ user.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 %}