Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ref: Remove dollar signs from email templates #887

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/auto-refund.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h2>Sorry to see you go, {{ name }}</h2>
</svg>

<p>
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.
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.
</p>
</div>
<p>
Expand All @@ -18,6 +18,6 @@ <h2>Sorry to see you go, {{ name }}</h2>
<a href="mailto:[email protected]">[email protected]</a>
</p>
{% endblock %} {% block aside %}
<p>Total: USD <span class="green-money-text">${{ amount }}</span></p>
<p>Total: <span class="green-money-text">{{ amount }}</span></p>
<p>{{ date }}</p>
{% endblock %}
2 changes: 1 addition & 1 deletion templates/auto-refund.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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.

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

If you have any questions or need help, please contact us at [email protected]
4 changes: 2 additions & 2 deletions templates/failed-payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2>Oops! Let's fix this, {{ name }}</h2>
/>
</svg>
<p>
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has
Your {{ amount }} payment to Functional Software, Inc, dba Sentry has
failed
</p>
</div>
Expand All @@ -41,6 +41,6 @@ <h3>Why did the payment fail?</h3>
</p>
</div>
{% endblock %} {% block aside %}
<p>Total: USD <span class="red-money-text">${{ amount }}</span></p>
<p>Total: <span class="red-money-text">{{ amount }}</span></p>
<p>{{ date }}</p>
{% endblock %}
2 changes: 1 addition & 1 deletion templates/failed-payment.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has failed.
Your {{ amount }} payment to Functional Software, Inc, dba Sentry has failed.

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.

Expand Down
Loading