app-MAIL-temp/templates/emails/transactional/double-subscription-partner.html
Adrià Casajús 99ce10a1bc
Send email to users with a subscription and a partner plan upgrade (#1101)
* 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>
2022-06-20 14:34:20 +02:00

29 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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 theres nothing to do.
{% endcall %}
{% call text() %}
Best, <br>
SimpleLogin team.
{% endcall %}
{% endblock %}