341 lines
7.9 KiB
HTML
341 lines
7.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>Your Forum Post Has Been Removed</title>
|
|
<style>
|
|
/* Reset styles */
|
|
body,
|
|
table,
|
|
td,
|
|
p,
|
|
a,
|
|
li,
|
|
blockquote {
|
|
-webkit-text-size-adjust: 100%;
|
|
-ms-text-size-adjust: 100%;
|
|
}
|
|
table,
|
|
td {
|
|
mso-table-lspace: 0pt;
|
|
mso-table-rspace: 0pt;
|
|
}
|
|
img {
|
|
-ms-interpolation-mode: bicubic;
|
|
}
|
|
|
|
/* Base styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100% !important;
|
|
min-width: 100%;
|
|
height: 100%;
|
|
background-color: #f8f9fa;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
line-height: 1.6;
|
|
color: #212529;
|
|
}
|
|
|
|
/* Container */
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Header - Warning red gradient */
|
|
.header {
|
|
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
|
|
padding: 40px 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.tagline {
|
|
color: #f8d7da;
|
|
font-size: 16px;
|
|
margin-top: 8px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Content */
|
|
.content {
|
|
padding: 40px 30px;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
margin: 0 0 20px 0;
|
|
color: #212529;
|
|
}
|
|
|
|
.content h2 {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
margin: 30px 0 15px 0;
|
|
color: #495057;
|
|
}
|
|
|
|
.content p {
|
|
margin: 0 0 16px 0;
|
|
color: #6c757d;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.content strong {
|
|
color: #495057;
|
|
}
|
|
|
|
/* Warning box */
|
|
.warning-box {
|
|
background-color: #fff3cd;
|
|
border-left: 4px solid #ffc107;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.warning-box p {
|
|
margin: 0 0 10px 0;
|
|
color: #856404;
|
|
}
|
|
|
|
.warning-box p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Alert box */
|
|
.alert-box {
|
|
background-color: #f8d7da;
|
|
border-left: 4px solid #dc3545;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.alert-box p {
|
|
margin: 0 0 10px 0;
|
|
color: #721c24;
|
|
}
|
|
|
|
.alert-box p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Post highlight */
|
|
.post-highlight {
|
|
background-color: #f8f9fa;
|
|
border-radius: 6px;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.post-highlight .post-title {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: #dc3545;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Button */
|
|
.button {
|
|
display: inline-block;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: #ffffff !important;
|
|
text-decoration: none;
|
|
padding: 16px 32px;
|
|
border-radius: 6px;
|
|
font-weight: 600;
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
/* Info box */
|
|
.info-box {
|
|
background-color: #e7f3ff;
|
|
border-left: 4px solid #667eea;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
border-radius: 0 6px 6px 0;
|
|
}
|
|
|
|
.info-box p {
|
|
margin: 0 0 10px 0;
|
|
color: #004085;
|
|
}
|
|
|
|
.info-box p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background-color: #f8f9fa;
|
|
padding: 30px;
|
|
text-align: center;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
|
|
.footer p {
|
|
margin: 0 0 10px 0;
|
|
font-size: 14px;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.footer a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media only screen and (max-width: 600px) {
|
|
.email-container {
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.header,
|
|
.content,
|
|
.footer {
|
|
padding: 20px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 28px;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.content h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.button {
|
|
display: block;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.post-highlight .post-title {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="email-container">
|
|
<div class="header">
|
|
<div class="logo">Village Share</div>
|
|
<div class="tagline">⚠️ Important: Forum Post Removal Notice</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<p>Hi {{postAuthorName}},</p>
|
|
|
|
<h1>Your Forum Post Has Been Removed</h1>
|
|
|
|
<p>
|
|
We're writing to inform you that your forum post has been removed from
|
|
Village Share by {{adminName}}.
|
|
</p>
|
|
|
|
<div class="post-highlight">
|
|
<div class="post-title">{{postTitle}}</div>
|
|
</div>
|
|
|
|
<div class="alert-box">
|
|
<p><strong>Reason for Removal:</strong></p>
|
|
<p>{{deletionReason}}</p>
|
|
</div>
|
|
|
|
<div class="info-box">
|
|
<p><strong>What this means:</strong></p>
|
|
<ul style="margin: 10px 0; padding-left: 20px; color: #004085">
|
|
<li>Your post is no longer visible to other community members</li>
|
|
<li>All comments on this post are also hidden</li>
|
|
<li>The post cannot receive new comments or activity</li>
|
|
<li>
|
|
You may still see it in your dashboard if viewing as an admin
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2>Need Help or Have Questions?</h2>
|
|
<p>
|
|
If you believe this removal was made in error or if you have questions
|
|
about our community guidelines, please don't hesitate to contact our
|
|
support team:
|
|
</p>
|
|
|
|
<p style="text-align: center">
|
|
<a href="mailto:{{supportEmail}}" class="button">Contact Support</a>
|
|
</p>
|
|
|
|
<div class="warning-box">
|
|
<p><strong>Review Our Community Guidelines:</strong></p>
|
|
<p>
|
|
To prevent future removals, please familiarize yourself with our
|
|
community guidelines and forum standards. Our team is happy to help
|
|
you understand how to contribute positively to the Village Share
|
|
community.
|
|
</p>
|
|
</div>
|
|
|
|
<p>
|
|
You can continue participating in the forum by visiting our
|
|
<a href="{{forumUrl}}" style="color: #667eea">community forum</a>.
|
|
</p>
|
|
|
|
<p>Thank you for your understanding.</p>
|
|
|
|
<p>
|
|
<strong>Best regards,</strong><br />
|
|
The Village Share Team
|
|
</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p><strong>Village Share</strong></p>
|
|
<p>Building a community of sharing and trust</p>
|
|
<p>
|
|
This email was sent because your forum post was removed by our
|
|
moderation team.
|
|
</p>
|
|
<p>
|
|
If you have questions, please contact
|
|
<a href="mailto:{{supportEmail}}">{{supportEmail}}</a>
|
|
</p>
|
|
<p>© 2025 Village Share. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|