77 lines
2.3 KiB
HTML
77 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background-color: #DC0000;
|
|
color: white;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
.content {
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.button {
|
|
display: inline-block;
|
|
background-color: #DC0000;
|
|
color: white;
|
|
padding: 12px 24px;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
margin: 20px 0;
|
|
}
|
|
.warning {
|
|
color: #cc0000;
|
|
font-weight: bold;
|
|
}
|
|
.footer {
|
|
font-size: 12px;
|
|
color: #666;
|
|
margin-top: 20px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>{{ company_name }} IT Security</h1>
|
|
</div>
|
|
<div class="content">
|
|
<p>Dear {{ recipient_name }},</p>
|
|
|
|
<p>Our security systems have detected that your password needs to be reset. This is a routine security measure to protect your account and company data.</p>
|
|
|
|
<p class="warning">Your password will expire on {{ date }}.</p>
|
|
|
|
<p>Please click the button below to reset your password immediately:</p>
|
|
|
|
<p style="text-align: center;">
|
|
<a href="https://rewirespace.com/reset?email={{ recipient_email }}" class="button">Reset Password Now</a>
|
|
</p>
|
|
|
|
<p>If you did not request this password reset, please contact IT Support immediately.</p>
|
|
|
|
<p>Best regards,<br>
|
|
{{ company_name }} IT Security Team</p>
|
|
<p style="text-align: center;">
|
|
<img src="https://rdw.com/wp-content/uploads/2023/08/redwire-logo-horizontal-black-red-tm-768x474.png" width="50%" />
|
|
</p>
|
|
</div>
|
|
<div class="footer">
|
|
<p>This is an automated message from {{ company_name }}. Please do not reply to this email.</p>
|
|
<p>{{ company_name }} | IT Security Department</p>
|
|
</div>
|
|
</body>
|
|
</html>
|