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

Commit f5923a0

Browse files
feat: Add ACH to stripe payment emails
1 parent ce786b3 commit f5923a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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 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 | 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.
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 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 | 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.
44

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

templates/failed-payment.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"
4848
>
4949
We were unable to process your {% if card_type %}{{ card_type |
50-
capitalize }}{% else %}card{% endif %}{% if last_four %} ending in
50+
capitalize }}{% else %}card{% endif %}{% if card_type == 'us_bank_account' and bank_name %} from {{ bank_name }}{% endif %}{% if last_four %} ending in
5151
{{ last_four }}{% endif %}. Please take a moment to double check
5252
your payment information to ensure your account continues to run
5353
smoothly.

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 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 | 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.
44

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

0 commit comments

Comments
 (0)