diff --git a/templates/emails/com/welcome.html b/templates/emails/com/welcome.html index 1dad4f25..b6c5f76a 100644 --- a/templates/emails/com/welcome.html +++ b/templates/emails/com/welcome.html @@ -3,31 +3,57 @@ {% block greeting %}

{% if name %} - Welcome, {{ name }}! + Welcome, {{ name }}! {% else %} - Welcome! + Welcome! {% endif %}

{% endblock %} {% block content %} - {{ render_text("My name is Son. I’m the founder of SimpleLogin and I wanted to be the first to welcome you on board.") }} + {% call text() %} + My name is Son. I’m the founder of SimpleLogin and I wanted to be the first to welcome you on board. + {% endcall %} - {{ render_text('To better secure your account, I recommend enabling Multi-Factor Authentication (MFA) on your Setting page.') }} + {% call text() %} + To better secure your account, I recommend enabling Multi-Factor Authentication (MFA) on your + Setting page. + {% endcall %} - {{ render_text('If you have any feedback or improvement ideas please let me know by simply replying to this email. Yes, this email is not sent from a no-reply address. -') }} + {% call text() %} + If you have any feedback or improvement ideas please let me know by simply replying to this email. Yes, this email + is not sent from a no-reply address. + {% endcall %} - {{ render_text('To be informed of SimpleLogin latest features, you can follow our - Twitter or join our Reddit sub.') }} + {% call text() %} + To be informed of SimpleLogin latest features, you can follow our + Twitter or join our + Reddit sub. + {% endcall %} + + {% if user.in_trial() and user.trial_end %} + {% call 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() }}.
+ All aliases you create during the trial + will continue to work normally when the trial ends. + {% endcall %} - {% 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() + ". All aliases you create during the trial will continue to work normally when the trial ends.") }} {% endif %} - {{ render_text('In the next coming days, you are going to receive some onboarding emails to quickly present some SimpleLogin features. If you don\'t want to receive these emails, you can disable them in your notification settings.') }} + {% call text() %} + In the next coming days, you are going to receive some onboarding emails to quickly present some SimpleLogin + features. + If you don't want to receive these emails, you can disable them in your + notification settings. + {% endcall %} + + {% call text() %} + Thanks,
+ SimpleLogin Team. + {% endcall %} + - {{ render_text('Thanks,
SimpleLogin Team.') }} {% endblock %}