55 lines
1.4 KiB
HTML
55 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact Support</title>
|
|
<style>
|
|
/* Add your custom styles here */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
background-color: #ffffff;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.email-container h1 {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
color: #333333;
|
|
}
|
|
.email-container p {
|
|
line-height: 1.6;
|
|
color: #666666;
|
|
}
|
|
.email-container strong {
|
|
color: #333333;
|
|
}
|
|
.email-container a {
|
|
color: #0066cc;
|
|
text-decoration: none;
|
|
}
|
|
.email-container a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<h1>Contact Support</h1>
|
|
<p><strong>Name:</strong> {{name}}</p>
|
|
<p><strong>Email:</strong> {{email}}</p>
|
|
<p><strong>Subject:</strong> {{subject}}</p>
|
|
<p><strong>Message:</strong></p>
|
|
<p>{{message}}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|