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

Commit a5246bb

Browse files
committed
Remove dollar signs from email templates
1 parent 8fea409 commit a5246bb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

templates/auto-refund.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2>Sorry to see you go, {{ name }}</h2>
66
</svg>
77

88
<p>
9-
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.
9+
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.
1010
</p>
1111
</div>
1212
<p>
@@ -18,6 +18,6 @@ <h2>Sorry to see you go, {{ name }}</h2>
1818
<a href="mailto:support@codecov.io">support@codecov.io</a>
1919
</p>
2020
{% endblock %} {% block aside %}
21-
<p>Total: USD <span class="green-money-text">${{ amount }}</span></p>
21+
<p>Total: USD <span class="green-money-text">{{ amount }}</span></p>
2222
<p>{{ date }}</p>
2323
{% endblock %}

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 last_four %} ending in {{ last_four }}{% endif %} shortly.
44

55
If you have any questions or need help, please contact us at support@codecov.io

templates/failed-payment.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2>Oops! Let's fix this, {{ name }}</h2>
1717
/>
1818
</svg>
1919
<p>
20-
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has
20+
Your {{ amount }} payment to Functional Software, Inc, dba Sentry has
2121
failed
2222
</p>
2323
</div>
@@ -41,6 +41,6 @@ <h3>Why did the payment fail?</h3>
4141
</p>
4242
</div>
4343
{% endblock %} {% block aside %}
44-
<p>Total: USD <span class="red-money-text">${{ amount }}</span></p>
44+
<p>Total: USD <span class="red-money-text">{{ amount }}</span></p>
4545
<p>{{ date }}</p>
4646
{% endblock %}

templates/failed-payment.txt

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

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

0 commit comments

Comments
 (0)