120 lines
3.5 KiB
HTML
120 lines
3.5 KiB
HTML
<!-- templates/interviews/email/interview_invitation.html -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Interview Invitation</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #1a1a1a;
|
|
background-color: #f8f7f2;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
border-radius: 8px;
|
|
}
|
|
.header {
|
|
background-color: #9d2235;
|
|
padding: 30px 20px;
|
|
text-align: center;
|
|
border-radius: 8px 8px 0 0;
|
|
}
|
|
.header h1 {
|
|
color: #ffffff;
|
|
margin: 0;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
}
|
|
.content {
|
|
padding: 30px 20px;
|
|
}
|
|
.content h3 {
|
|
color: #9d2235;
|
|
margin-top: 25px;
|
|
margin-bottom: 15px;
|
|
font-size: 20px;
|
|
}
|
|
.content ul {
|
|
background-color: #f8f7f2;
|
|
padding: 20px 20px 20px 40px;
|
|
margin: 20px 0;
|
|
border-radius: 6px;
|
|
border-left: 4px solid #9d2235;
|
|
}
|
|
.content ul li {
|
|
margin-bottom: 10px;
|
|
color: #1a1a1a;
|
|
}
|
|
.content strong {
|
|
color: #9d2235;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #9d2235;
|
|
color: white;
|
|
padding: 14px 28px;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
margin-top: 20px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
.button:hover {
|
|
background-color: #7a1a29;
|
|
}
|
|
.footer {
|
|
background-color: #1a1a1a;
|
|
color: #f8f7f2;
|
|
padding: 20px;
|
|
text-align: center;
|
|
font-size: 12px;
|
|
border-radius: 0 0 8px 8px;
|
|
}
|
|
.footer p {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>Interview Invitation</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Dear <strong>{{ candidate_name }}</strong>,</p>
|
|
<p>We are pleased to invite you for an interview for the position of <strong>{{ job_title }}</strong> at <strong>{{ company_name }}</strong>.</p>
|
|
|
|
<h3>Interview Details:</h3>
|
|
<ul>
|
|
<li><strong>Date:</strong> {{ interview_date|date:"l, F j, Y" }}</li>
|
|
<li><strong>Time:</strong> {{ interview_time|time:"g:i A" }}</li>
|
|
<li><strong>Platform:</strong> Zoom Video Conference</li>
|
|
<li><strong>Meeting ID:</strong> {{ meeting_id }}</li>
|
|
</ul>
|
|
|
|
<p>Please join the interview using the link below:</p>
|
|
<a href="{{ join_url }}" class="button">Join Interview</a>
|
|
|
|
<p>If you have any questions or need to reschedule, please contact us at your earliest convenience.</p>
|
|
|
|
<p>We look forward to speaking with you!</p>
|
|
|
|
<p>Best regards,<br>
|
|
The Hiring Team<br>
|
|
<strong>{{ company_name }}</strong></p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>This is an automated message. Please do not reply to this email.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |