2019-11-20 22:12:26 +01:00
|
|
|
{% extends "base.html" %}
|
2019-11-16 14:05:15 +01:00
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
{% block greeting %}
|
|
|
|
<h1 style="margin-top: 0; color: #333333; font-size: 22px; font-weight: bold; text-align: left;" align="left">
|
|
|
|
{% if name %}
|
2020-09-12 12:13:35 +02:00
|
|
|
Welcome, {{ name }}!
|
2020-02-12 06:18:57 +01:00
|
|
|
{% else %}
|
2020-09-12 12:13:35 +02:00
|
|
|
Welcome!
|
2020-02-12 06:18:57 +01:00
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
{% endblock %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
2020-02-12 06:18:57 +01:00
|
|
|
{% block content %}
|
2020-09-12 14:34:32 +02:00
|
|
|
{% if alias %}
|
|
|
|
{% call text() %}
|
|
|
|
This is the first email you receive via your <b>first alias</b> {{ alias }}.
|
|
|
|
This alias is automatically created when you signed up on SimpleLogin.
|
|
|
|
{% endcall %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
2020-09-12 14:34:32 +02:00
|
|
|
{% call text() %}
|
|
|
|
It's for receiving our news, feature announcements or tips -
|
|
|
|
feel free to <a href="{{ URL + '/dashboard/setting#notification' }}">disable</a> it if you don't need any of
|
|
|
|
these.
|
|
|
|
{% endcall %}
|
|
|
|
{% endif %}
|
2020-09-12 12:13:35 +02:00
|
|
|
|
|
|
|
{% call text() %}
|
2020-09-12 14:34:32 +02:00
|
|
|
You can reach out to us by: <br>
|
|
|
|
- Simply replying to this email <br>
|
|
|
|
- On <a href="https://twitter.com/simple_login">Twitter</a> <br>
|
|
|
|
- On <a href="https://www.reddit.com/r/Simplelogin/">Reddit</a>
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
{% if user.in_trial() and user.trial_end %}
|
|
|
|
{% call text() %}
|
2020-09-12 14:34:32 +02:00
|
|
|
When you signed up, you can use all premium features like <em>custom domain</em>, <em>alias directory</em>,
|
|
|
|
<em>mailbox</em>,
|
|
|
|
<em>PGP</em> without any limit during 7 days (the "trial period"). <br>
|
|
|
|
No worries: all aliases you create during this period
|
|
|
|
will continue to work normally even if you don't upgrade.
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
|
|
|
{% endif %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
{% call text() %}
|
2020-09-12 14:34:32 +02:00
|
|
|
Please don't hesitate to talk around you about the benefits of using <b>email alias</b>
|
|
|
|
to protect your personal email address and your privacy. <br>
|
2020-09-12 12:13:35 +02:00
|
|
|
{% endcall %}
|
2020-01-11 22:21:58 +01:00
|
|
|
|
2020-09-12 12:13:35 +02:00
|
|
|
{% call text() %}
|
2020-09-12 14:34:32 +02:00
|
|
|
Let's make spammers and Big Tech's life harder.<br/>
|
2020-09-12 12:13:35 +02:00
|
|
|
SimpleLogin Team.
|
|
|
|
{% endcall %}
|
2020-01-30 07:54:33 +01:00
|
|
|
|
2019-11-20 22:12:26 +01:00
|
|
|
{% endblock %}
|
2019-11-16 14:05:15 +01:00
|
|
|
|