From 4b5d806ef3b866a518882673410d30449679a2f0 Mon Sep 17 00:00:00 2001 From: Son NK Date: Sat, 8 Feb 2020 22:44:00 +0700 Subject: [PATCH] Improve welcome and safari-extension email --- templates/emails/com/safari-extension.html | 21 ++++++++++++++------- templates/emails/com/welcome.html | 4 +++- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/templates/emails/com/safari-extension.html b/templates/emails/com/safari-extension.html index bbb757e5..8f91efe0 100644 --- a/templates/emails/com/safari-extension.html +++ b/templates/emails/com/safari-extension.html @@ -1,17 +1,24 @@ {% extends "base.html" %} {% block content %} - {{ render_text("This email is sent to " + user.email + ".") }} - - {{ render_text('Unsubscribe from our emails on https://app.simplelogin.io/dashboard/setting#notification') }} - - {{ render_text("
") }} + + + This email is sent to {{ user.email }}. + Unsubscribe on Settings +
+ + {{ render_text("Hi " + user.name) }} {{ render_text("If you use Safari on a MacBook or iMac, you should check out our new Safari extension.") }} - {{ render_text('It can be installed on AppStore.') }} + {{ render_text('It can be installed on AppStore. Its code is available on GitHub.') }} - {{ render_text('') }} + {{ render_text('') }} + + {{ render_text('See our annoucement post for more information on this feature Introducing Safari extension.') }} {{ render_text("As usual, let me know if you have any question by replying to this email.") }} diff --git a/templates/emails/com/welcome.html b/templates/emails/com/welcome.html index 96e31cf9..ec311021 100644 --- a/templates/emails/com/welcome.html +++ b/templates/emails/com/welcome.html @@ -17,9 +17,11 @@ and create your business emails using email alias. This is cheaper and more convenient than buying a dedicated solution like GSuite. By the way, all our business emails are actually aliases.') }} {% if user.in_trial() %} - {{ render_text('You can use all premium features like custom domain or alias directory during the trial period. Your trial will end ' + user.trial_end.humanize() + ".") }} + {{ render_text('You can use all premium features like custom domain or alias directory during the trial period. Your trial will end ' + user.trial_end.humanize() + ".") }} {% endif %} + {{ render_text('In the next coming days, you are going to receive some onboarding emails to quickly present SimpleLogin features. If you don\'t want to receive these emails, you can disable them on Settings.') }} + {{ render_text('If there\'s anything that\'s bugging you, even the smallest of issues that could be done better, I want to hear about it - so hit the reply button.') }} {% endblock %}