nxtgauge-backend-rust/crates/email/templates/lead-request-sent.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

42 lines
1.3 KiB
HTML

<!-- Lead Request Sent -->
<h1 class="email-title">Lead Request Sent</h1>
<p>Hi {{first_name}},</p>
<p>Your lead request has been sent successfully. Here's what happens next:</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">Location</span>
<span class="detail-value">{{location}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Reserved</span>
<span class="detail-value" style="color: #ea580c"
>{{tracecoins_reserved}} TC</span
>
</div>
<div class="detail-row">
<span class="detail-label">Expires In</span>
<span class="detail-value">24 hours</span>
</div>
</div>
<div class="info-box">
<p class="info-box-title">💰 Tracecoin Policy</p>
<p style="margin: 0">
<strong>{{tracecoins_reserved}} Tracecoins</strong> have been reserved from
your wallet. They will be:
</p>
<ul style="margin: 10px 0; padding-left: 20px">
<li><strong>Deducted</strong> if the customer accepts your request</li>
<li><strong>Returned</strong> if rejected or expired</li>
</ul>
</div>
<p>You'll receive an email when the customer responds.</p>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>