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

32 lines
1.3 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
2020-09-09 20:26:32 +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 %}
2020-09-09 20:26:32 +02:00
{% call text() %}
2020-09-09 22:14:06 +02:00
Without PGP, emails are stored <b>in plaintext</b> leaving your email service able to read your emails.
2020-09-09 20:26:32 +02:00
{% endcall %}
2020-09-09 20:26:32 +02:00
<img src="https://simplelogin.io/blog/without-pgp.png" alt="Without PGP" style="max-width: 100%; margin-bottom: 10px">
2020-09-09 20:26:32 +02:00
{% call text() %}
2020-09-09 22:14:06 +02:00
With PGP enabled, SimpleLogin <b>encrypts</b> your emails with your public key before forwarding to your mailbox.
2020-09-09 20:26:32 +02:00
{% endcall %}
2020-09-09 20:26:32 +02:00
<img src="https://simplelogin.io/blog/with-pgp.png" alt="Without PGP" style="max-width: 100%; margin-bottom: 20px">
2020-09-09 20:26:32 +02:00
{{ render_button("Enable PGP on your mailbox", URL ~ "/dashboard/mailbox/" ~ user.default_mailbox_id) }}
2020-09-09 20:38:23 +02:00
{{ raw_url(URL ~ "/dashboard/mailbox/" ~ user.default_mailbox_id) }}
{% endblock %}
{% block footer %}
This email is sent to {{ user.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>
{% endblock %}