-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(notification): change email template (#4046)
* chore(notification): change email template * chore(notifications): add from_name for sending emails --------- Co-authored-by: Vaibhav <[email protected]>
- Loading branch information
1 parent
78aa1d7
commit 6606211
Showing
8 changed files
with
88 additions
and
389 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
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
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
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
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,19 @@ | ||
{{#> base}} | ||
<tr> | ||
<td align="center" style="background-color: #fff; padding: 20px"> | ||
<h2 style="margin-top: 0; margin-bottom: 20px; font-size: 20px"> | ||
{{subject}} | ||
</h2> | ||
<p | ||
style=" | ||
margin-top: 0; | ||
margin-bottom: 20px; | ||
font-size: 16px; | ||
line-height: 1.5; | ||
" | ||
> | ||
{{body}} | ||
</p> | ||
</td> | ||
</tr> | ||
{{/base}} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,27 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<html lang="en"> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<title>{{subject}}</title> | ||
|
||
{{!-- Include Styles --}} | ||
{{> styles}} | ||
</head> | ||
</head> | ||
<body> | ||
<table role="presentation" width="100%" cellspacing="0" cellpadding="0"> | ||
<tr> | ||
<td align="center"> | ||
<!-- Centered Content Wrapper --> | ||
<table | ||
class="centered-content" | ||
role="presentation" | ||
cellspacing="0" | ||
cellpadding="0" | ||
> | ||
<!-- Logo Section --> | ||
<tr> | ||
<td class="logo-section" align="center"> | ||
<img | ||
src="https://void.cat/d/WhVRCknUEJwCpVCPihYzfU.webp" | ||
alt="Blink - The Everyday Bitcoin Wallet" | ||
width="180" | ||
/> | ||
</td> | ||
</tr> | ||
|
||
<body> | ||
<table role="presentation" border="0" cellpadding="0" cellspacing="0" class="body"> | ||
<tr> | ||
<td> </td> | ||
<td class="container"> | ||
<div class="content"> | ||
{{> @partial-block}} | ||
</div> | ||
</td> | ||
<td> </td> | ||
</tr> | ||
</table> | ||
</body> | ||
<!-- Body Section --> | ||
{{> @partial-block}} | ||
|
||
<!-- Footer Section --> | ||
<tr> | ||
<td class="footer-section" align="center"> | ||
<p class="footer-text"> | ||
This is an automated email. If you encounter problems, please | ||
do not respond to it. Reach out to our | ||
<a href="https://www.blink.sv/en/support">Support</a> | ||
</p> | ||
<br /> | ||
<p class="footer-link"> | ||
<a href="https://www.blink.sv">blink.sv</a> | ||
</p> | ||
</td> | ||
</tr> | ||
</table> | ||
</td> | ||
</tr> | ||
</table> | ||
</body> | ||
</html> |
Oops, something went wrong.