<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
                <title>Browser Link Expired</title></head>
                <body> <div class="container">
                <h1>This email content has expired.</h1>
                <p>We're sorry for the inconvenience. This email content can no longer be viewed in a browser.</p>
                </div></body></html>
                <style> 
                body {
                    font-family: Arial, sans-serif;
                    background-color: #f9f9f9;
                    color: #333;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                }
                .container {
                    text-align: center;
                    padding: 20px;
                    background-color: #fff;
                    border-radius: 8px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    max-width: 400px;
                }
                h1 {
                    font-size: 24px;
                    color: #ff6347;
                }
                p {
                    font-size: 16px;
                    color: #666;
                }
            </style>
        