Files
digest_app/templates/module_support/thank_you_support.html

74 lines
2.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 Us Email</title>
<!-- Bootstrap CSS -->
{% comment %} <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> {% endcomment %}
<style>
/* Add your custom styles here */
body {
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);
margin-top: 20px;
margin-bottom: 20px;
}
.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;
}
.footer {
text-align: center;
margin-top: 20px;
color: #999999;
}
</style>
</head>
<body>
<div class="container">
<div class="email-container">
<h1>Subject: {{ subject }}</h1>
<p>Dear {{ name }},</p>
<p>Thank you for contacting Digest. We appreciate you reaching out.</p>
<p><strong>Your Message:</strong></p>
<p>{{ message }}</p>
<p>We will respond to your inquiry as soon as possible.</p>
<p>In the meantime, you may find answers to frequently asked questions on our Help Center: <a href="#">[link to Help Center]</a></p>
<p>Sincerely,</p>
<p>The Digest Team</p>
</div>
<div class="footer">
&copy; {{year}} Digest. All rights reserved.
</div>
</div>
<!-- Bootstrap JS and dependencies -->
{% comment %} <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> {% endcomment %}
</body>
</html>