nxtgauge-backend-rust/crates/email/templates/onboarding-submitted.html
Ashwin Kumar b4f714f43f feat(emails): complete email system with 35 branded templates and full wiring
- 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
2026-04-10 04:49:39 +02:00

48 lines
1.4 KiB
HTML

<!-- Onboarding Submitted -->
<h1 class="email-title">Profile Submitted for Review</h1>
<div style="text-align: center; margin: 20px 0">
<span class="status-badge status-pending">⏳ Under Review</span>
</div>
<p>Hi {{first_name}},</p>
<p>
Your {{role_name}} profile has been submitted for verification. Our team will
review it shortly.
</p>
<div class="detail-card">
<div class="detail-row">
<span class="detail-label">Profile Type</span>
<span class="detail-value">{{role_name}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Submitted On</span>
<span class="detail-value">{{submitted_at}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Status</span>
<span class="detail-value" style="color: #d97706">Pending Review</span>
</div>
</div>
<div class="info-box">
<p class="info-box-title">⏱️ What's Next?</p>
<p style="margin: 0">
Our team typically reviews profiles within <strong>24-48 hours</strong>.
You'll receive an email once your profile is approved.
</p>
</div>
<div
class="info-box"
style="background-color: #dbeafe; border-left-color: #2563eb"
>
<p class="info-box-title" style="color: #1e40af">💡 While You Wait</p>
<p style="margin: 0; color: #1e3a8a">
You can explore the platform and familiarize yourself with the dashboard.
Full features will be unlocked once verified!
</p>
</div>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>