2023-04-05 11:19:58 +02:00
|
|
|
{% extends "zerver/emails/email_base_default.html" %}
|
2021-06-11 12:53:45 +02:00
|
|
|
|
|
|
|
{% block illustration %}
|
2023-04-26 01:47:00 +02:00
|
|
|
<img src="{{ email_images_base_url }}/email_logo.png" alt=""/>
|
2021-06-11 12:53:45 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-05-06 15:27:22 +02:00
|
|
|
{% trans organization_name_with_link=macros.link_tag(realm.url, realm.string_id) %}
|
2021-06-11 12:53:45 +02:00
|
|
|
Your organization, {{ organization_name_with_link }}, has been downgraded to the Zulip Cloud
|
|
|
|
Free plan because of unpaid invoices. The unpaid invoices have been voided.
|
|
|
|
{% endtrans %}
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
{% trans upgrade_url=macros.link_tag(upgrade_url) %}
|
|
|
|
To continue on the Zulip Cloud Standard plan, please upgrade again by going to {{ upgrade_url }}.
|
|
|
|
{% endtrans %}
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
{% trans support_email=macros.email_tag(support_email) %}
|
|
|
|
If you think this was a mistake or need more details, please reach out to us at {{ support_email }}.
|
|
|
|
{% endtrans %}
|
|
|
|
{% endblock %}
|