improve onboarding email subjects

This commit is contained in:
Son NK 2020-09-09 22:14:06 +02:00
parent ab5cd37f70
commit 85332a5fb5
3 changed files with 7 additions and 7 deletions

View File

@ -38,7 +38,7 @@ def new_app():
def onboarding_send_from_alias(user):
send_email(
user.email,
f"Do you know you can send emails to anyone from your alias?",
f"Do you know you can send emails from your alias?",
render("com/onboarding/send-from-alias.txt", user=user),
render("com/onboarding/send-from-alias.html", user=user),
)
@ -56,7 +56,7 @@ def onboarding_pgp(user):
def onboarding_browser_extension(user):
send_email(
user.email,
f"Do you know you can create aliases without leaving the browser?",
f"Have you tried SimpleLogin Chrome/Firefox extensions and Android/iOS apps?",
render("com/onboarding/browser-extension.txt", user=user),
render("com/onboarding/browser-extension.html", user=user),
)
@ -65,7 +65,7 @@ def onboarding_browser_extension(user):
def onboarding_mailbox(user):
send_email(
user.email,
f"Do you know SimpleLogin can manage several email addresses?",
f"Do you know you can have multiple mailboxes on SimpleLogin?",
render("com/onboarding/mailbox.txt", user=user),
render("com/onboarding/mailbox.html", user=user),
)

View File

@ -10,13 +10,13 @@
{% endcall %}
{% call text() %}
Without PGP, emails are stored <b>in plaintext</b> leaving your email service able to read your emails:
Without PGP, emails are stored <b>in plaintext</b> leaving your email service able to read your emails.
{% endcall %}
<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:
With PGP enabled, SimpleLogin <b>encrypts</b> your emails with your public key before forwarding to your mailbox.
{% endcall %}
<img src="https://simplelogin.io/blog/with-pgp.png" alt="Without PGP" style="max-width: 100%; margin-bottom: 20px">

View File

@ -9,7 +9,7 @@
{% call text() %}
If you want to reply to an email, just hit "Reply"
and your response will come from your alias.
and the response will come from your alias. Your personal email address stays hidden.
{% endcall %}
@ -20,7 +20,7 @@
{% endcall %}
{% call text() %}
1. First click <b>Send Email</b> on the alias you want to send email from. <br>
1. First click <b>Send Email</b> on the alias you want to send emails from. <br>
<img src="https://static.simplelogin.io/send-from-alias/1.png" style="max-width: 500px">
{% endcall %}