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

<!-- Lead Request Rejected -->
<h1 class="email-title">Lead Request Update</h1>
<div style="text-align: center; margin: 20px 0">
<span class="status-badge status-rejected">Not Accepted</span>
</div>
<p>Hi {{first_name}},</p>
<p>
The customer has decided not to proceed with your request for this
requirement.
</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">Customer</span>
<span class="detail-value">{{customer_name}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Tracecoins Returned</span>
<span class="detail-value" style="color: #059669"
>{{tracecoins_returned}} TC</span
>
</div>
</div>
<div
class="info-box"
style="background-color: #d1fae5; border-left-color: #059669"
>
<p class="info-box-title" style="color: #065f46">💰 Tracecoins Refunded</p>
<p style="margin: 0; color: #064e3b">
Your <strong>{{tracecoins_returned}} Tracecoins</strong> have been returned
to your wallet and are available for other opportunities.
</p>
</div>
<div style="text-align: center">
<a href="{{marketplace_url}}" class="cta-button">Browse More Leads</a>
</div>
<p>Don't be discouraged! There are many other opportunities waiting for you.</p>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>