mirror of
https://github.com/ptarmiganlabs/butler-sos.git
synced 2025-12-19 17:58:18 -05:00
59 lines
1.7 KiB
HTML
59 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Encoding Test</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.header {
|
|
background-color: #dc3545;
|
|
color: white;
|
|
padding: 20px;
|
|
text-align: center;
|
|
border-radius: 8px;
|
|
}
|
|
.content {
|
|
padding: 20px;
|
|
background-color: #f8f9fa;
|
|
margin: 10px 0;
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>⚠️ Encoding Test</h1>
|
|
<p>Testing HTML entity encoding</p>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h3>🚨 Error Test</h3>
|
|
<p>This email tests proper HTML entity encoding instead of Unicode emojis.</p>
|
|
|
|
<p><strong>HTML Entities Used:</strong></p>
|
|
<ul>
|
|
<li>⚠️ Warning Sign (&#9888;&#65039;)</li>
|
|
<li>🚨 Siren (&#128680;)</li>
|
|
<li>🔍 Magnifying Glass (&#128269;)</li>
|
|
<li>ℹ️ Information (&#8505;&#65039;)</li>
|
|
</ul>
|
|
|
|
<p><strong>Server:</strong> {{SERVER_NAME}}</p>
|
|
<p><strong>Service:</strong> {{SERVICE_NAME}}</p>
|
|
<p><strong>Error Count:</strong> {{ERROR_COUNT}}</p>
|
|
|
|
<div style="background-color: #fff3cd; border: 1px solid #ffeaa7; padding: 10px; border-radius: 4px;">
|
|
{{ERROR_ENTRIES}}
|
|
</div>
|
|
</div>
|
|
|
|
<p><em>Generated at: {{GENERATION_TIME}}</em></p>
|
|
</body>
|
|
</html> |