mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
14 lines
1,002 B
HTML
14 lines
1,002 B
HTML
{% extends "mail/email_base.xhtml" %}
|
|
|
|
{% load utils_tags %}
|
|
|
|
{% block body %}
|
|
<h2 style="color: #282F33; font-size: 18px; font-weight: bold;" align="center">
|
|
Hey {{ user.username }}, your premium account has just expired.
|
|
</h2>
|
|
<p style="line-height: 20px;">You now have a free account with all the limitations of a free account. But that doesn't mean you can't renew your premium subscription and enjoy the many benefits of using NewsBlur.</p>
|
|
<p style="line-height: 20px;">Renew now: <a href="https://{% current_domain %}{{ user.profile.autologin_url }}?next=premium">https://{% current_domain %}{{ user.profile.autologin_url }}?next=premium</a></p>
|
|
<p style="line-height: 20px;">Spend a few days trying out <a href="https://{% current_domain %}{{ user.profile.autologin_url }}">NewsBlur</a> again. We hope you love it.</p>
|
|
{% endblock %}
|
|
|
|
{% block resources_header %}There are a couple resources you can use if you end up loving NewsBlur:{% endblock resources_header %}
|