- Add 35 branded HTML email templates with Nxtgauge styling - Create email template engine with base template system - Add email management API for admin panel - Wire email triggers from all services - All services compile successfully
36 lines
894 B
HTML
36 lines
894 B
HTML
<!-- Email Verification OTP -->
|
|
<h1 class="email-title">Verify Your Email Address</h1>
|
|
<p>Hi {{first_name}},</p>
|
|
<p>
|
|
Please use the following One-Time Password (OTP) to verify your email address:
|
|
</p>
|
|
|
|
<div style="text-align: center; margin: 30px 0">
|
|
<div
|
|
style="
|
|
display: inline-block;
|
|
background: #f3f4f6;
|
|
padding: 20px 40px;
|
|
border-radius: 8px;
|
|
letter-spacing: 8px;
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
color: #111827;
|
|
font-family: monospace;
|
|
"
|
|
>
|
|
{{otp_code}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="info-box">
|
|
<p class="info-box-title">⏰ This code expires in 10 minutes</p>
|
|
<p style="margin: 0">
|
|
For security reasons, this OTP will expire after 10 minutes. If you didn't
|
|
request this, please ignore this email.
|
|
</p>
|
|
</div>
|
|
|
|
<p style="margin-top: 30px">
|
|
Best regards,<br /><strong>The Nxtgauge Team</strong>
|
|
</p>
|