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

49 lines
1.4 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Manual Tracecoin Credit -->
<h1 class="email-title">Tracecoins Credited to Your Account</h1>
<div class="amount-display">
<div class="amount-label">Tracecoins Added</div>
<div class="amount-value">
<span class="amount-currency">+</span>{{tracecoins_amount}}
</div>
</div>
<p>Hi {{first_name}},</p>
<p>Tracecoins have been manually credited to your wallet by our admin team.</p>
<div class="detail-card">
<div class="detail-row">
<span class="detail-label">Amount Credited</span>
<span class="detail-value" style="color: #059669; font-weight: bold"
>{{tracecoins_amount}} TC</span
>
</div>
<div class="detail-row">
<span class="detail-label">Date</span>
<span class="detail-value">{{credited_at}}</span>
</div>
<div class="detail-row">
<span class="detail-label">Reason</span>
<span class="detail-value">{{reason}}</span>
</div>
</div>
<div
class="info-box"
style="background-color: #dbeafe; border-left-color: #2563eb"
>
<p class="info-box-title" style="color: #1e40af">
Why did I receive this?
</p>
<p style="margin: 0; color: #1e3a8a">{{reason}}</p>
</div>
<div style="text-align: center">
<a href="{{wallet_url}}" class="cta-button">View Wallet</a>
</div>
<p>
If you have any questions about this credit, please contact our support team.
</p>
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>