1
0
Fork 0
mirror of synced 2024-08-01 19:42:07 +12:00
appwrite/app/config/locale/templates/email-base.tpl

84 lines
1.7 KiB
Smarty
Raw Normal View History

2023-06-06 17:58:33 +12:00
<!doctype html>
2020-06-12 11:20:32 +12:00
<html>
<head>
2023-06-06 16:50:15 +12:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600&display=swap"
rel="stylesheet">
<style>
a { color:currentColor; }
body {
padding: 32px;
color: #616B7C;
font-size: 15px;
font-family: 'Inter', sans-serif;
line-height: 15px;
}
table {
width: 100%;
border-spacing: 0 !important;
}
table,
tr,
th,
td {
margin: 0;
padding: 0;
}
td {
vertical-align: top;
}
h* {
font-family: 'Poppins', sans-serif;
}
hr {
border: none;
border-top: 1px solid #E8E9F0;
}
</style>
2020-06-12 11:20:32 +12:00
</head>
2020-06-13 06:21:58 +12:00
<body style="direction: {{direction}}">
2021-05-31 08:38:40 +12:00
2023-06-06 16:50:15 +12:00
<div style="max-width:650px; margin:0 auto;">
<table style="margin-top: 32px">
<tr>
<td>
<h1>
{{subject}}
</h1>
</td>
</tr>
</table>
<table style="margin-top: 40px">
<tr>
<td>
<p>{{hello}}</p>
2023-06-06 17:04:41 +12:00
2023-06-06 16:50:15 +12:00
<p>{{body}}</p>
2023-06-06 17:04:41 +12:00
2023-06-06 16:50:15 +12:00
<a href="{{redirect}}" target="_blank">{{redirect}}</a>
2023-06-06 17:04:41 +12:00
<p><br />{{footer}}</p>
<br />
2023-06-06 16:50:15 +12:00
<p>{{thanks}}
2023-06-06 17:04:41 +12:00
<br />
2023-06-06 16:50:15 +12:00
{{signature}}
</p>
</td>
</tr>
</table>
</div>
2020-06-12 11:20:32 +12:00
</body>
</html>