61 lines
2.3 KiB
JavaScript
61 lines
2.3 KiB
JavaScript
const tplemail = {};
|
|
tplemail.allowedprofils = ["anonymous", "druid"];
|
|
tplemail.subject = "Verification code - Email verification";
|
|
tplemail.html = `
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body {background-color:#fff;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table cellpadding="0" cellspacing="0" align="center" style="width: 600px; border: none; padding: 0; background-color:#fff;" width="600">
|
|
<tr style="padding:20px 0 0 0; background-color:#fff;">
|
|
<td style="border-bottom:1px solid #0DC3FF;" >
|
|
<p style="padding:60px 0 10px 0;">
|
|
<img width="180px" src="https://smatchit.io/static/img/logo/logoBlackSimple.png" alt="smatchit" />
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:20px 0 40px 0;">
|
|
<h1 style="font-size:15px;font-family:Monserrat;">Email verification</h1>
|
|
<p style="font-size:12px;font-family:Monserrat;">Hello,</p>
|
|
<p style="font-size:12px;font-family:Monserrat;">
|
|
You requested to verify your email address. Please use the following code to confirm your identity:
|
|
</p>
|
|
<p style="font-size:24px;font-family:Monserrat;font-weight:bold;text-align:center;padding:20px 0;">
|
|
{{code}}
|
|
</p>
|
|
<p style="font-size:12px;font-family:Monserrat;">
|
|
This code is valid for 10 minutes. If you did not request this, you can ignore this email.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table cellpadding="0" cellspacing="0" align="center" style="width: 600px; border: none; padding: 0;" width="600">
|
|
<tr bgcolor="#161616">
|
|
<td bgcolor="#161616" align="center" style="padding:20px;">
|
|
<p style="text-align:center;">
|
|
<img width="250px"src="https://smatchit.io/static/img/logo/logoSignature.png" alt="smatchit">
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
`;
|
|
tplemail.text = `
|
|
Email verification
|
|
|
|
Hello,
|
|
|
|
You requested to verify your email address. Please use the following code to confirm your identity:
|
|
|
|
{{code}}
|
|
|
|
This code is valid for 10 minutes. If you did not request this, you can ignore this email.
|
|
`;
|
|
module.exports = tplemail;
|