From 079cafc7b972ef8e0d354f13746a155b4696def0 Mon Sep 17 00:00:00 2001 From: Son NK Date: Sun, 12 Jan 2020 22:22:28 +0100 Subject: [PATCH] Improve welcome email --- templates/emails/welcome.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/templates/emails/welcome.html b/templates/emails/welcome.html index 3ad5777d..eb68821c 100644 --- a/templates/emails/welcome.html +++ b/templates/emails/welcome.html @@ -1,18 +1,22 @@ {% extends "base.html" %} {% block content %} - {{ render_text("Hi " + name) }} + (% if name %} + {{ render_text("Hi " + name + ",") }} + {% else %} + {{ render_text("Hi,") }} + {% endif %} {{ render_text("My name is Son. I’m the founder of SimpleLogin and I wanted to be the first to welcome you on board.") }} {{ render_text('To better secure your account, I recommend enabling Multi-Factor Authentication (MFA) on your Setting page.') }} - {{ render_text('If you use Chrome or Firefox, SimpleLogin extension could be quite handy to quickly create aliases. Chrome extension can be installed on Chrome Store and Firefox on Firefox Store.') }} + {{ render_text('If you use Chrome or Firefox, SimpleLogin extension could be handy to quickly create aliases. Chrome extension can be installed on Chrome Store and Firefox on Firefox Store.') }} {{ render_text('If you have a domain, for example for your business or your project, you can import your domain into SimpleLogin and create your business emails backed by your personal email. This is cheaper and more convenient than buying a GSuite account. By the way, all our business emails are actually aliases :).') }} - {{ render_text('Importing domain is only available for Premium plan though, shoot me an email if you need a trial period.') }} + {{ render_text('Importing domain is only available for Premium plan though, shoot me an email by replying to this email if you need a trial period.') }} {% endblock %}