mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
99ce10a1bc
* Send email to users with a subscription and a partner plan upgrade * Update double-subscription-partner.html * Update double-subscription-partner.txt.jinja2 Co-authored-by: Adrià Casajús <adria.casajus@proton.ch> Co-authored-by: Son Nguyen Kim <nguyenkims@users.noreply.github.com>
28 lines
1 KiB
HTML
28 lines
1 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block content %}
|
||
{% call text() %}
|
||
Hi,
|
||
{% endcall %}
|
||
|
||
{% call text() %}
|
||
{% if is_proton %}
|
||
As a Proton user with a paid mail subscription you can have SimpleLogin premium for free, thanks to the SimpleLogin Proton integration.<br>
|
||
{% else %}
|
||
{{ partner.name }} has upgraded your account to premium.<br>
|
||
{% endif %}
|
||
You currently have a paid SimpleLogin subscription via {{ subscription_channel }}.<br>
|
||
{% if subscription_channel == 'apple' %}
|
||
You can cancel it to avoid automatic renewal on your Apple iCloud account page.
|
||
You can find more info <a href="https://support.apple.com/en-us/HT202039">here</a>.<br>
|
||
{% elif subscription_channel == 'paddle' %}
|
||
You can cancel it to avoid automatic renewal on <a href="{{ cancel_link }}">{{ cancel_link }}</a>.<br>
|
||
{% endif %}
|
||
You can also keep both subscriptions. In this case there’s nothing to do.
|
||
{% endcall %}
|
||
|
||
{% call text() %}
|
||
Best, <br>
|
||
SimpleLogin team.
|
||
{% endcall %}
|
||
{% endblock %}
|