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

33 lines
956 B
HTML

<!-- Requirement Expired -->
<h1 class="email-title">Requirement Expired</h1>
<div style="text-align: center; margin: 20px 0">
<span class="status-badge status-expired">Expired</span>
</div>
<p>Hi {{first_name}},</p>
<p>
Your requirement has expired after 7 days and is no longer visible to
professionals.
</p>
<div class="detail-card">
<div class="detail-row">
<span class="detail-label">Requirement</span>
<span class="detail-value">{{requirement_title}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Status</span>
<span class="detail-value" style="color: #6b7280">Expired</span>
</div>
</div>
<div class="info-box">
<p class="info-box-title">📝 Create a New Requirement</p>
<p style="margin: 0">
You can create a new requirement anytime. Make sure to provide clear details
to attract the right professionals!
</p>
</div>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>