nxtgauge-backend-rust/crates/email/templates/application-received.html

34 lines
994 B
HTML
Raw Normal View History

<!-- 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>