24 lines
737 B
HTML
24 lines
737 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Email: Fix the login bug</title>
|
|
<style>body { font-family: Arial; } .header { color: #666; }</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<p><strong>From:</strong> boss@company.com</p>
|
|
<p><strong>To:</strong> dev@company.com</p>
|
|
<p><strong>Subject:</strong> Fix the login bug</p>
|
|
<p><strong>Date:</strong> Mon, 7 Apr 2026 09:15:00 +0000</p>
|
|
</div>
|
|
<div class="body">
|
|
<p>Hi,</p>
|
|
<p>Please fix the login bug in Project Alpha as soon as possible.
|
|
Users are reporting that they can't log in with their Google accounts.
|
|
This is blocking the whole team. Please resolve it by Friday.</p>
|
|
<p>Thanks,<br>Boss</p>
|
|
</div>
|
|
</body>
|
|
</html>
|