You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 5, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: templates/auto-refund.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ <h2>Sorry to see you go, {{ name }}</h2>
8
8
</svg>
9
9
10
10
<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.
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.
2
2
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.
4
4
5
5
If you have any questions or need help, please contact us at [email protected]
Copy file name to clipboardExpand all lines: templates/failed-payment.html
+12-5Lines changed: 12 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,11 +46,18 @@
46
46
color: black;
47
47
"
48
48
>
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.
54
61
</p>
55
62
<pstyle="width: 100%; padding: 35px 0px; text-align: center">
Copy file name to clipboardExpand all lines: templates/failed-payment.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has failed.
2
2
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.
0 commit comments