- 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
33 lines
994 B
HTML
33 lines
994 B
HTML
<!-- Application Received -->
|
|
<h1 class="email-title">📨 New Application Received</h1>
|
|
|
|
<p>Hi {{first_name}},</p>
|
|
<p>You have received a new application for your job posting:</p>
|
|
|
|
<div class="detail-card">
|
|
<div class="detail-row">
|
|
<span class="detail-label">Job Title</span>
|
|
<span class="detail-value">{{job_title}}</span>
|
|
</div>
|
|
<div class="detail-row">
|
|
<span class="detail-label">Candidate</span>
|
|
<span class="detail-value">{{applicant_name}}</span>
|
|
</div>
|
|
<div class="detail-row">
|
|
<span class="detail-label">Applied On</span>
|
|
<span class="detail-value">{{applied_at}}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align: center">
|
|
<a href="{{applications_url}}" class="cta-button">View Application</a>
|
|
</div>
|
|
|
|
<div class="info-box">
|
|
<p class="info-box-title">📋 Quick Stats</p>
|
|
<p style="margin: 0">
|
|
Total applications for this job: <strong>{{total_applications}}</strong>
|
|
</p>
|
|
</div>
|
|
|
|
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>
|