-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add email template for success after failed payment (#941)
- Loading branch information
1 parent
9d15965
commit 50e7312
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{% extends "base.html" %} {% block main %} | ||
<h2 | ||
style=" | ||
font-size: 50px; | ||
font-weight: 300; | ||
line-height: 55px; | ||
margin: 0; | ||
text-align: center; | ||
" | ||
> | ||
You're all set! | ||
</h2> | ||
<p style="text-align: center; font-weight: 400; font-size: 18px; line-height: 27px; color: black"> | ||
Total: USD | ||
<span style="color: rgb(33, 181, 119); font-weight: 700" | ||
>${{ amount }}</span | ||
> | ||
<b>|</b> {{ date }} | ||
</p> | ||
<div> | ||
<p | ||
id="success-banner" | ||
style=" | ||
background-color: rgb(242, 252, 243); | ||
padding: 15px 20px; | ||
width: 95%; | ||
border-left: solid 3px rgb(66, 159, 73); | ||
font-size: 14px; | ||
line-height: 21px; | ||
font-weight: 400; | ||
color: rgb(14, 27, 41); | ||
" | ||
> | ||
Your ${{ amount }} payment to Functional Software, Inc, dba | ||
Sentry has been received | ||
</p> | ||
</div> | ||
<p | ||
style=" | ||
text-align: center; | ||
font-weight: 400; | ||
font-size: 18px; | ||
line-height: 27px; | ||
margin: 0; | ||
color: black; | ||
" | ||
> | ||
To view your recent payment, click the link below. Thank you for choosing Codecov. | ||
</p> | ||
<p style="width: 100%; padding: 35px 0px; text-align: center"> | ||
<a | ||
href="{{ cta_link }}" | ||
style=" | ||
background-color: rgb(0, 113, 194); | ||
color: white; | ||
font-size: 16px; | ||
font-weight: 600; | ||
line-height: 24px; | ||
padding: 25px; | ||
border-radius: 8px; | ||
border: none; | ||
cursor: pointer; | ||
text-decoration: none; | ||
" | ||
>View invoice</a | ||
> | ||
</p> | ||
<p style="font-weight: 400; font-size: 18px; line-height: 27px; color: black; text-align: center;"> | ||
If you have any questions or need help, please contact us at | ||
<a | ||
href="mailto:[email protected]" | ||
style=" | ||
color: rgb(0, 113, 194); | ||
text-decoration: none; | ||
font-weight: 500; | ||
" | ||
>[email protected]</a | ||
> | ||
</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Your ${{ amount }} payment to Functional Software, Inc, dba Sentry has been received. | ||
|
||
To view your recent payment, click the link below. Thank you for choosing Codecov. | ||
|
||
{{ cta_link }} | ||
|
||
If you have any questions or need help, please contact us at [email protected] |