OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
NLEditor
/
newsletter
/
1
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/30/2025 06:15:46 AM
rwxr-xr-x
📁
images
-
04/30/2025 06:17:26 AM
rwxr-xr-x
📄
index.php
6.34 KB
05/19/2025 10:07:22 AM
rw-r--r--
Editing: index.php
Close
<!DOCTYPE html> <html lang="en"> <head> <? header("Access-Control-Allow-Origin: *"); header("Access-Control-Allow-Methods: GET, POST, OPTIONS"); header("Access-Control-Allow-Headers: Content-Type, Authorization"); // If it's an OPTIONS request (preflight), stop execution here. if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') { http_response_code(200); exit(); } // Continue with the email processing script... ?> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Newsletter</title> </head> <body style="margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333333;"> <table style="width: 100%; max-width: 600px; margin: 0 auto; background-color: #ffffff; border-collapse: collapse;"> <!-- Header --> <tr> <td style="position: relative; height: 180px; "> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_1.jpg" alt="Company Logo" style="width: 100%; height: 100%; object-fit: cover; position: relative; top: 0; left: 0; ;"> </td> </tr> <!-- Main Content --> <tr> <td style="padding: 20px;"> <!-- Newsletter Title --> <h1 style="color: #333333; font-size: 24px; margin-top: 0;">Your Newsletter Title</h1> <!-- Date --> <p style="color: #666666; font-size: 14px; margin-bottom: 20px;">February 25, 2025</p> <!-- Featured Article --> <div style="margin-bottom: 30px;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_3.jpg" alt="Featured Image" style="width: 100%; height: auto; margin-bottom: 15px;"> <h2 style="color: #333333; font-size: 20px; margin-top: 0;">Featured Article Title</h2> <p style="line-height: 1.5; margin-bottom: 15px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p> <a href="#" style="display: inline-block; padding: 8px 16px; background-color: #4CAF50; color: white; text-decoration: none; font-weight: bold; border-radius: 4px;">Read More</a> </div> <!-- Secondary Articles --> <table style="width: 100%; border-collapse: collapse;"> <tr> <td style="width: 50%; padding-right: 10px; vertical-align: top;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_2.jpg" alt="Article Image" style="width: 100%; height: auto; margin-bottom: 10px;"> <h3 style="color: #333333; font-size: 18px; margin-top: 0;">Second Article</h3> <p style="line-height: 1.5; font-size: 14px;">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p> <a href="#" style="color: #4CAF50; text-decoration: none; font-weight: bold; font-size: 14px;">Learn more →</a> </td> <td style="width: 50%; padding-left: 10px; vertical-align: top;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_4.jpg" alt="Article Image" style="width: 100%; height: auto; margin-bottom: 10px;"> <h3 style="color: #333333; font-size: 18px; margin-top: 0;">Third Article</h3> <p style="line-height: 1.5; font-size: 14px;">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <a href="#" style="color: #4CAF50; text-decoration: none; font-weight: bold; font-size: 14px;">Learn more →</a> </td> </tr> </table> </td> </tr> <!-- Footer --> <tr> <td style="padding: 20px; text-align: center; background-color: #333333; color: #ffffff;"> <p style="margin-bottom: 10px; font-size: 14px;">© 2025 Your Company Name. All rights reserved.</p> <p style="margin-bottom: 10px; font-size: 14px;">123 Street Name, City, State, ZIP</p> <p style="margin-bottom: 20px; font-size: 14px;"> <a href="#" style="color: #ffffff; text-decoration: none; margin: 0 10px;">Unsubscribe</a> | <a href="#" style="color: #ffffff; text-decoration: none; margin: 0 10px;">View in browser</a> | <a href="#" style="color: #ffffff; text-decoration: none; margin: 0 10px;">Privacy Policy</a> </p> <!-- <div style="margin-top: 15px;"> <td href="#" style="display: inline-block; margin: 0 5px;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_5.jpg" alt="Facebook" style="width: 32px; height: 32px;"> </td> <td href="#" style="display: inline-block; margin: 0 5px;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_6.jpg" alt="Twitter" style="width: 32px; height: 32px;"> </td> <td href="#" style="display: inline-block; margin: 0 5px;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_1.jpg" alt="Instagram" style="width: 32px; height: 32px;"> </td> <td href="#" style="display: inline-block; margin: 0 5px;"> <img src="https://knoblycream.com/Xpress/NLEditor/newsletter/1/images/bg_2.jpg" alt="LinkedIn" style="width: 32px; height: 32px;"> </td> </div> --> </td> </tr> </table> </body> </html>