{% extends "email/base.html" %} {% block title %}Your refund has landed{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="success" hero_title="Refund complete" hero_subtitle="The money is back in your account." hero_icon="check-circle.png" hero_accent_icon="smile.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

Your refund of {{ refund_amount }} has been successfully returned to your original payment method.

{% include "email/partials/_detail_row.html" with pill_label="REFUND AMOUNT" pill_value=refund_amount pill_variant="gray" pill_radius="top" %} {% if original_invoice_date %} {% include "email/partials/_detail_row.html" with pill_label="ORIGINAL CHARGE" pill_value=original_invoice_date pill_variant="gray" %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="PAYMENT METHOD" pill_value=payment_gateway pill_variant="gray" %} {% include "email/partials/_detail_row.html" with pill_label="STATUS" pill_value="Refund complete" pill_variant="success" pill_border="none" pill_radius="bottom" %}

It may take a short while to appear on your bank statement depending on your bank. If you have any questions, our support team is always here to help.

{% include "email/partials/_cta.html" with cta_url=billing_url cta_label="View billing" %} {% endblock %}