From 1f41007f3d78a65420550a30fce84aecd62843bb Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 12 Feb 2020 18:11:37 +0700 Subject: [PATCH] Add what-next to trial-end email --- templates/emails/_emailhelpers.html | 26 +++++++++++++++++++ templates/emails/base.html | 2 +- templates/emails/transactional/trial-end.html | 21 +++++++++++++-- 3 files changed, 46 insertions(+), 3 deletions(-) diff --git a/templates/emails/_emailhelpers.html b/templates/emails/_emailhelpers.html index 274c7143..226e2cb0 100644 --- a/templates/emails/_emailhelpers.html +++ b/templates/emails/_emailhelpers.html @@ -39,4 +39,30 @@ https://litmus.com/blog/a-guide-to-bulletproof-buttons-in-email-design --> +{% endmacro %} + +{% macro grey_section(parts) %} + + + + + {% endmacro %} \ No newline at end of file diff --git a/templates/emails/base.html b/templates/emails/base.html index 5f57f1ff..c016d003 100644 --- a/templates/emails/base.html +++ b/templates/emails/base.html @@ -1,4 +1,4 @@ -{% from "_emailhelpers.html" import render_text, render_button, raw_url %} +{% from "_emailhelpers.html" import render_text, render_button, raw_url, grey_section %} diff --git a/templates/emails/transactional/trial-end.html b/templates/emails/transactional/trial-end.html index fa9b33e0..9a4a4480 100644 --- a/templates/emails/transactional/trial-end.html +++ b/templates/emails/transactional/trial-end.html @@ -16,10 +16,27 @@ {{ render_text("- As features like catch-all or directory allow you to create aliases on-the-fly, those aliases cannot be automatically created if you have more than 5 aliases.") }} {{ render_text("- You cannot add new domain or directory.") }} - {{ render_text('You can upgrade today to continue using all these Premium features (and much more coming).') }} + {{ render_text('You can upgrade today to continue using all these Premium features (and much more coming).') }} - {{ render_text('Let us know if you need to extend your trial period.') }} + {{ render_button("Upgrade your account", "https://app.simplelogin.io/dashboard/pricing") }} + + {{ render_text("If you're not ready to upgrade to a paying account, you have a few other options available to you:") }} + + {{ grey_section([ + "Continue with the Free Plan - In the free plan you are limited to 5 aliases but there's no cap on bandwidth or + number of emails forwarded/sent.", + "Restart your trial - If you didn't get a chance to fully try out the product or need a little more time to evaluate, just let us know. Simply reply to this email and we'll extend your trial period.", + "Share feedback - If SimpleLogin isn't right for you, let us know what you were looking for and we might be able to suggest some alternatives that might be a better fit.", + "Export your data - If SimpleLogin wasn't a good fit, you can export your data for use elsewhere. ", + "Close your account - You can close your account and delete your data. Or, do nothing and we'll automatically close it and delete your data for you in 90 days. But don't worry, we'll send you another email before that happens." + + ]) }} + + + {{ render_text('Regardless of your choice, we want to say thank you for trying SimpleLogin. We know the product + requires an investment of your time, and we appreciate you giving us a chance.') }} {{ render_text('Thanks,
SimpleLogin Team.') }} + {{ render_text('P.S. If you have any questions or need any help, please don\'t hesitate to reach out. You can simply reply to this email or reach us via Twitter/Github.') }} {% endblock %}