{% extends "emails/base_email.html" %} {% block title %}{{ subject }}{% endblock %} {% block content %}

Hello {{ customer_name }},

{% if kind == "subscription" %}

Please complete checkout to start your recurring payment:

{% else %}

You have a new invoice ready for payment:

{% endif %}

{{ description }}

${{ amount_dollars }} USD

{% if kind == "subscription" %}Complete checkout{% else %}Pay invoice{% endif %}

Or open this link:
{{ pay_url }}

Thank you,
{{ brand_legal|default:"AI ML Operations, LLC" }}

{% endblock %} {% block footer_note %}This is an automated message. Please do not reply to this email.{% endblock %}