2020-03-24 21:01:38 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-09-09 20:26:32 +02:00
|
|
|
{% call text() %}
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1>Secure your emails with PGP.</h1>
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
If you use Gmail, Yahoo, Outlook, etc, you might want to use
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Pretty_Good_Privacy">PGP</a>
|
|
|
|
(Pretty Good Privacy)
|
|
|
|
to make sure your emails can't be read by these email providers.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% call text() %}
|
|
|
|
Without PGP, emails are stored <b>in plaintext</b> leaving your email service able to read your emails.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
<img src="https://simplelogin.io/blog/without-pgp.png"
|
|
|
|
alt="Without PGP"
|
|
|
|
style="max-width: 100%; margin-bottom: 10px">
|
|
|
|
{% call text() %}
|
|
|
|
With PGP enabled, SimpleLogin <b>encrypts</b> your emails with your public key before forwarding to your mailbox.
|
|
|
|
{% endcall %}
|
2022-07-11 12:06:15 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
<img src="https://simplelogin.io/blog/with-pgp.png"
|
|
|
|
alt="Without PGP"
|
|
|
|
style="max-width: 100%; margin-bottom: 20px">
|
|
|
|
{{ render_button("Enable PGP on your mailbox", URL ~ "/dashboard/mailbox/" ~ user.default_mailbox_id) }}
|
|
|
|
{{ raw_url(URL ~ "/dashboard/mailbox/" ~ user.default_mailbox_id) }}
|
2020-03-24 21:01:38 +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:26:32 +02:00
|
|
|
<a href="{{ URL }}/dashboard/setting#notification">Settings</a>
|
2020-03-24 21:01:38 +01:00
|
|
|
{% endblock %}
|