mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 00:03:03 +08:00
update manual subscription reminder email
This commit is contained in:
parent
be57add431
commit
df3e594a53
2 changed files with 6 additions and 30 deletions
|
@ -1,33 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
{% if name %}
|
||||
{{ render_text("Hi " + name + ",") }}
|
||||
{% else %}
|
||||
{{ render_text("Hi,") }}
|
||||
{% endif %}
|
||||
|
||||
{{ render_text("Your subscription will end " + manual_sub.end_at.humanize() + ".") }}
|
||||
|
||||
{{ render_text("When the subscription ends:") }}
|
||||
|
||||
{{ render_text("- All aliases/domains/directories you have created are <b>kept</b> and continue working normally.") }}
|
||||
|
||||
{% call text() %}
|
||||
- You cannot create new aliases if you exceed the free plan limit, i.e. have more than {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
|
||||
<h1>
|
||||
Your subscription will end on <b>{{ manual_sub.end_at.format("YYYY-MM-DD") }}</b>
|
||||
</h1>
|
||||
{% endcall %}
|
||||
|
||||
{% call 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 {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
|
||||
Please contact us at <a href="mailto:hi@simplelogin.io">hi@simplelogin.io</a> to renew your subscription.
|
||||
{% endcall %}
|
||||
|
||||
{{ 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('Thanks, <br />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 %}
|
||||
|
|
|
@ -1,16 +1,8 @@
|
|||
Hi {{name}}
|
||||
|
||||
Your subscription will end {{ manual_sub.end_at.humanize() }}.
|
||||
Your subscription will end on {{ manual_sub.end_at.format("YYYY-MM-DD") }}
|
||||
|
||||
When the subscription ends:
|
||||
|
||||
- All aliases/domains/directories you have created are kept and continue working.
|
||||
- You cannot create new aliases if you exceed the free plan limit, i.e. have more than {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
|
||||
- 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 {{MAX_NB_EMAIL_FREE_PLAN}} aliases.
|
||||
- You cannot add new domain or directory.
|
||||
|
||||
You can upgrade today to continue using all these Premium features (and much more coming).
|
||||
Please contact us at hi@simplelogin.io to renew your subscription.
|
||||
|
||||
Best,
|
||||
SimpleLogin Team.
|
||||
|
|
Loading…
Reference in a new issue