Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 32d7791

Browse files
fix var names
1 parent f5923a0 commit 32d7791

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

templates/auto-refund.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h2>Sorry to see you go, {{ name }}</h2>
88
</svg>
99

1010
<p>
11-
A ${{ amount }} auto refund has been processed and will be credited to your {% if card_type %}{{ card_type | capitalize }}{% else %}card{% endif %}{% if card_type == 'us_bank_account' and bank_name %} from {{ bank_name }}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %} shortly.
11+
A ${{ amount }} auto refund has been processed and will be credited to your {% if card_type %}{{ card_type }}{% elif is_credit_card %}card{% elif is_us_bank_account %}US Bank Account{% if bank_name %} from {{ bank_name }}{% endif %}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %} shortly.
1212
</p>
1313
</div>
1414
<p>

templates/auto-refund.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Your subscription has been successfully canceled. Your account has been returned to our one-seat developer plan. We appreciate your business and welcome you back anytime.
22

3-
A ${{ amount }} auto refund has been processed and will be credited to your {% if card_type %}{{ card_type | capitalize }}{% else %}card{% endif %}{% if card_type == 'us_bank_account' and bank_name %} from {{ bank_name }}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %} shortly.
3+
A ${{ amount }} auto refund has been processed and will be credited to your {% if card_type %}{{ card_type }}{% elif is_credit_card %}card{% elif is_us_bank_account %}US Bank Account{% if bank_name %} from {{ bank_name }}{% endif %}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %} shortly.
44

55
If you have any questions or need help, please contact us at [email protected]

templates/failed-payment.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,18 @@
4646
color: black;
4747
"
4848
>
49-
We were unable to process your {% if card_type %}{{ card_type |
50-
capitalize }}{% else %}card{% endif %}{% if card_type == 'us_bank_account' and bank_name %} from {{ bank_name }}{% endif %}{% if last_four %} ending in
51-
{{ last_four }}{% endif %}. Please take a moment to double check
52-
your payment information to ensure your account continues to run
53-
smoothly.
49+
We were unable to process your
50+
{% if card_type %}
51+
{{ card_type | capitalize }}
52+
{% elif is_credit_card %}
53+
card
54+
{% elif is_us_bank_account %}
55+
US Bank Account
56+
{% if bank_name %} from {{ bank_name }}{% endif %}
57+
{% endif %}
58+
{% if last_four %} ending in {{ last_four }}{% endif %}.
59+
Please take a moment to double check your payment information
60+
to ensure your account continues to run smoothly.
5461
</p>
5562
<p style="width: 100%; padding: 35px 0px; text-align: center">
5663
<a

templates/failed-payment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has failed.
22

3-
We were unable to process your {% if card_type %}{{ card_type | capitalize }}{% else %}card{% endif %}{% if card_type == 'us_bank_account' and bank_name %} from {{ bank_name }}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %}. Please take a moment to double check your payment information to ensure your account continues to run smoothly.
3+
We were unable to process your {% if card_type %}{{ card_type }}{% elif is_credit_card %}card{% elif is_us_bank_account %}US Bank Account{% if bank_name %} from {{ bank_name }}{% endif %}{% endif %}{% if last_four %} ending in {{ last_four }}{% endif %}. Please take a moment to double check your payment information to ensure your account continues to run smoothly.
44

55
In most cases, a payment might fail due to:
66
- An expired card

0 commit comments

Comments
 (0)