user can no longer extend sub with coinbase

This commit is contained in:
Son Nguyen
2026-03-20 10:41:20 +00:00
committed by Adrià Casajús
parent b23555729e
commit fe2e1c291d
3 changed files with 14 additions and 6 deletions
-3
View File
@@ -243,7 +243,6 @@ def notify_manual_sub_end():
retries=3,
)
extend_subscription_url = config.URL + "/dashboard/coinbase_checkout"
for coinbase_subscription in CoinbaseSubscription.all():
need_reminder = False
if (
@@ -275,13 +274,11 @@ def notify_manual_sub_end():
"transactional/coinbase/reminder-subscription.txt",
user=user,
coinbase_subscription=coinbase_subscription,
extend_subscription_url=extend_subscription_url,
),
render(
"transactional/coinbase/reminder-subscription.html",
user=user,
coinbase_subscription=coinbase_subscription,
extend_subscription_url=extend_subscription_url,
),
retries=3,
)
@@ -11,7 +11,16 @@
<b>{{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}</b>
{% endcall %}
{{ render_button("Extend your subscription", extend_subscription_url) }}
{% call text() %}
Due to Coinbase removing Coinbase Commerce, which SimpleLogin had been using until now,
you can no longer extend your subscription using cryptocurrency.
{% endcall %}
{% call text() %}
Please <a href="https://app.simplelogin.io/dashboard/support">contact us</a>
to renew your subscription.
{% endcall %}
{{ render_text('Best,
<br />
SimpleLogin Team.') }}
@@ -1,7 +1,9 @@
Your subscription ends on {{ coinbase_subscription.end_at.format("YYYY-MM-DD") }}
You can extend your subscription on
{{ extend_subscription_url }}
Due to Coinbase removing Coinbase Commerce, which SimpleLogin had been using until now,
you can no longer extend your subscription using cryptocurrency.
Please contact us on https://app.simplelogin.io/dashboard/support to renew your subscription.
Best,
SimpleLogin team.