improve onboarding emails wordings

This commit is contained in:
Son NK 2020-09-30 11:53:07 +02:00
parent 8517e7d356
commit c8e92af4d3
5 changed files with 22 additions and 10 deletions

View file

@ -58,7 +58,7 @@ def onboarding_send_from_alias(user):
send_email(
to_email,
f"Do you know you can send emails from your alias?",
f"SimpleLogin Tip: Send emails from your alias",
render("com/onboarding/send-from-alias.txt", user=user, to_email=to_email),
render("com/onboarding/send-from-alias.html", user=user, to_email=to_email),
)
@ -71,7 +71,7 @@ def onboarding_pgp(user):
send_email(
to_email,
f"Do you know you can encrypt your emails so only you can read them?",
f"SimpleLogin Tip: Secure your emails with PGP",
render("com/onboarding/pgp.txt", user=user, to_email=to_email),
render("com/onboarding/pgp.html", user=user, to_email=to_email),
)
@ -84,7 +84,7 @@ def onboarding_browser_extension(user):
send_email(
to_email,
f"Have you tried SimpleLogin Chrome/Firefox extensions and Android/iOS apps?",
f"SimpleLogin Tip: Chrome/Firefox/Safari extensions and Android/iOS apps",
render("com/onboarding/browser-extension.txt", user=user, to_email=to_email),
render("com/onboarding/browser-extension.html", user=user, to_email=to_email),
)
@ -97,7 +97,7 @@ def onboarding_mailbox(user):
send_email(
to_email,
f"Do you know you can have multiple mailboxes on SimpleLogin?",
f"SimpleLogin Tip: Multiple mailboxes",
render("com/onboarding/mailbox.txt", user=user, to_email=to_email),
render("com/onboarding/mailbox.html", user=user, to_email=to_email),
)

View file

@ -1,7 +1,11 @@
{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
{% call text() %}
<h1>
Download SimpleLogin browser extensions and mobile apps to create aliases on-the-fly.
</h1>
{% endcall %}
{% call text() %}
If you want to quickly create aliases <b>without</b> going to SimpleLogin website, you can do that with SimpleLogin

View file

@ -1,7 +1,11 @@
{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
{% call text() %}
<h1>
Add other mailboxes to SimpleLogin.
</h1>
{% endcall %}
{% call text() %}
If you have several email addresses, e.g. Gmail for work and Protonmail for personal uses,

View file

@ -1,7 +1,11 @@
{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
{% call text() %}
<h1>
Secure your emails with PGP.
</h1>
{% endcall %}
{% call text() %}
If you use Gmail, Yahoo, Outlook, etc, you might want to use

View file

@ -1,10 +1,10 @@
{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + user.name) }}
{% call text() %}
Do you know you can send emails <b>from your alias</b>? <br>
<h1>
Send emails from your alias.
</h1>
{% endcall %}
{% call text() %}