WizdomWeb/resources/templates/emails/contact_confirmation_email....

67 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email from HelpDesk+</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.email-container {
max-width: 600px;
margin: 20px auto;
background: #ffffff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.email-header {
text-align: center;
background-color: #0056b3;
color: white;
padding: 10px 0;
border-radius: 5px 5px 0 0;
}
.email-content {
padding: 20px;
font-size: 16px;
line-height: 1.6;
color: #333;
}
.email-footer {
text-align: center;
padding: 10px 0;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<div class="email-container">
<div class="email-header">
<h1>HelpDesk+</h1>
</div>
<div class="email-content">
<p>Dear {{name}},</p>
<p>Thank you for reaching out to HelpDesk+. Weve received your message and will get back to you shortly. Heres what you submitted:</p>
<blockquote>
<p><strong>Message:</strong> {{message}}</p>
</blockquote>
<p>If you have any further questions or concerns, feel free to reply to this email.</p>
<p>Best regards,<br>The HelpDesk+ Team</p>
</div>
<div class="email-footer">
&copy; 2025 HelpDesk+. All rights reserved.
</div>
</div>
</body>
</html>