1
0
Fork 0
mirror of synced 2024-07-06 23:21:05 +12:00
appwrite/app/config/locale/templates/email-base.tpl

67 lines
1.4 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>
2024-01-10 01:23:13 +13:00
a { color:currentColor; word-break: break-all; }
2023-06-06 16:50:15 +12:00
body {
padding: 32px;
color: #616B7C;
font-size: 15px;
font-family: 'Inter', sans-serif;
2024-01-10 01:23:13 +13:00
line-height: 150%;
2023-06-06 16:50:15 +12:00
}
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;
}
2023-08-28 20:35:26 +12:00
p {
margin-bottom: 10px;
}
2023-06-06 16:50:15 +12:00
</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-08-31 12:39:40 +12:00
<div style="max-width:650px; word-wrap: break-word; overflow-wrap: break-word;
2024-01-10 01:23:13 +13:00
word-break: normal; margin:0 auto;">
2023-06-06 16:50:15 +12:00
<table style="margin-top: 32px">
<tr>
<td>
2023-08-28 20:03:55 +12:00
{{body}}
2023-06-06 16:50:15 +12:00
</td>
</tr>
</table>
</div>
2020-06-12 11:20:32 +12:00
</body>
</html>