1773517698s:1921:"<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{{subject}}</title>
    <style>
        body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f4f7f6; }
        .container { max-width: 600px; margin: 20px auto; background: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        .header { background-color: #007bff; padding: 30px; text-align: center; }
        .header img { max-width: 180px; height: auto; }
        .content { padding: 40px; }
        .content h2 { color: #007bff; margin-top: 0; }
        .footer { background-color: #f8f9fa; padding: 20px; text-align: center; font-size: 12px; color: #6c757d; border-top: 1px solid #eee; }
        .btn { display: inline-block; padding: 12px 24px; background-color: #007bff; color: #ffffff !important; text-decoration: none; border-radius: 5px; font-weight: bold; margin-top: 20px; }
        .social-links { margin-top: 15px; }
        .social-links a { color: #6c757d; text-decoration: none; margin: 0 10px; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="{{site_logo}}" alt="{{site_name}} Logo">
        </div>
        <div class="content">
            {{message}}
        </div>
        <div class="footer">
            <p>&copy; {{current_year}} {{site_name}}. All rights reserved.</p>
            <p>This is an automated notification, please do not reply directly to this email.</p>
            <div class="social-links">
                <a href="{{site_url}}">Home</a> | <a href="{{site_url}}terms-conditions">Terms</a> | <a href="{{site_url}}privacy-policy">Privacy</a>
            </div>
        </div>
    </div>
</body>
</html>";