app-MAIL-temp/templates/emails/transactional/trial-end.html

27 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
{% if name %}
{{ render_text("Hi " + name + ",") }}
{% else %}
{{ render_text("Hi,") }}
{% endif %}
{{ render_text("Your trial will end " + user.trial_end.humanize() + ".") }}
{{ render_text("When the trial ends:") }}
2020-01-30 08:56:55 +01:00
{{ render_text("- All aliases/domains/directories you have created are <b>kept</b> and continue working.") }}
{{ render_text("- You cannot create new aliases if you exceed the free plan limit, i.e. have more than 5 aliases.") }}
{{ render_text("- As features like <b>catch-all</b> or <b>directory</b> 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 <a href="https://app.simplelogin.io/dashboard/pricing">upgrade</a> today to continue using all these Premium features (and much more coming).') }}
2020-02-12 10:38:58 +01:00
{{ render_text('Let us know if you need to extend your trial period.') }}
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{% endblock %}