Improve welcome and safari-extension email

This commit is contained in:
Son NK 2020-02-08 22:44:00 +07:00
parent 421f69b681
commit 4b5d806ef3
2 changed files with 17 additions and 8 deletions

View File

@ -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 <a href="https://app.simplelogin.io/dashboard/setting#notification">https://app.simplelogin.io/dashboard/setting#notification</a>') }}
{{ render_text("<hr>") }}
<tr>
<td align="left" valign="top" style="border-collapse: collapse; border-spacing: 0; margin: 0; padding: 0; padding-left: 6.25%; padding-right: 6.25%; width: 87.5%; font-size: 14px; font-weight: 400; line-height: 160%;
padding-top: 25px;
color: #000000;
font-family: sans-serif;" class="paragraph">
This email is sent to {{ user.email }}.
Unsubscribe on <a href="https://app.simplelogin.io/dashboard/setting#notification">Settings</a>
<hr>
</td>
</tr>
{{ 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 <a href="https://apps.apple.com/us/app/simplelogin/id1494051017?mt=12&fbclid=IwAR0M0nnEKgoieMkmx91TSXrtcScj7GouqRxGgXeJz2un_5ydhIKlbAI79Io">AppStore</a>.') }}
{{ render_text('It can be installed on <a href="https://apps.apple.com/us/app/simplelogin/id1494051017?mt=12&fbclid=IwAR0M0nnEKgoieMkmx91TSXrtcScj7GouqRxGgXeJz2un_5ydhIKlbAI79Io">AppStore</a>. Its code is available on <a href="https://github.com/simple-login/mac-app">GitHub</a>.') }}
{{ render_text('<img src="https://static.simplelogin.io/safari-extension.png" style="max-width: 80%">') }}
{{ render_text('<img src="https://static.simplelogin.io/safari-extension.png" style="max-width: 600px">') }}
{{ render_text('See our annoucement post for more information on this feature <a href="https://simplelogin.io/blog/safari-extension/">Introducing Safari extension</a>.') }}
{{ render_text("As usual, let me know if you have any question by replying to this email.") }}

View File

@ -17,9 +17,11 @@
and create your <b>business emails</b> 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 <em>custom domain</em> or <em>alias directory</em> during the <b>trial period</b>. Your trial will end ' + user.trial_end.humanize() + ".") }}
{{ render_text('You can use all premium features like <em>custom domain</em> or <em>alias directory</em> during the <b>trial period</b>. 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 <a href="https://app.simplelogin.io/dashboard/setting#notification">Settings</a>.') }}
{{ 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 %}