24 lines
767 B
HTML
24 lines
767 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Email: New policy update</title>
|
|
<style>body { font-family: Arial; }</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<p><strong>From:</strong> hr@company.com</p>
|
|
<p><strong>To:</strong> all@company.com</p>
|
|
<p><strong>Subject:</strong> FYI: New remote work policy effective May 1</p>
|
|
<p><strong>Date:</strong> Tue, 8 Apr 2026 10:00:00 +0000</p>
|
|
</div>
|
|
<div class="body">
|
|
<p>Hi everyone,</p>
|
|
<p>Just a heads-up that starting May 1, 2026 the company will be moving to
|
|
a hybrid work model. You will be expected to come into the office at least
|
|
two days per week. More details will follow in the employee handbook.</p>
|
|
<p>Best,<br>HR Team</p>
|
|
</div>
|
|
</body>
|
|
</html>
|