nxtgauge-backend-rust/crates/email/templates/profile-verified.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

34 lines
1.1 KiB
HTML

<!-- Profile Verified -->
<h1 class="email-title">🎉 Your Profile is Verified!</h1>
<div style="text-align: center; margin: 20px 0">
<span class="status-badge status-approved">✓ Approved</span>
</div>
<p>Hi {{first_name}},</p>
<p>
Great news! Your {{role_name}} profile has been verified by our team. You now
have full access to all Nxtgauge features.
</p>
<div class="detail-card">
<div class="detail-row">
<span class="detail-label">Verification Date</span>
<span class="detail-value">{{verified_at}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Account Type</span>
<span class="detail-value">{{role_name}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Status</span>
<span class="detail-value" style="color: #059669">Active</span>
</div>
</div>
<div style="text-align: center">
<a href="{{dashboard_url}}" class="cta-button">Go to Dashboard</a>
</div>
<p style="margin-top: 30px">Welcome to the Nxtgauge community!</p>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>