- HTML Content
- HTML Source
- Plain Text
HTML Source
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cloud Disabled</title>
<style>
body {
margin: 0;
padding: 0;
background: #eef2f7;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.email-card {
max-width: 500px;
margin: 40px auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
overflow: hidden;
border: 1px solid #d1d9e6;
}
.header {
background: #1e293b; /* Dark Blue */
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.icon-stop {
width: 28px;
height: 28px;
background: #f59e0b; /* Orange */
color: #1e293b;
border-radius: 8px;
text-align: center;
line-height: 28px;
font-weight: 900;
margin-right: 12px;
font-size: 18px;
}
.head-title {
font-weight: 600;
color: #ffffff;
font-size: 17px;
letter-spacing: 0.5px;
}
.main-body {
padding: 40px 30px;
text-align: center;
}
.logo-large {
display: block;
margin: 0 auto 20px auto;
max-width: 100px;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.h2 {
font-size: 24px;
color: #0f172a;
margin: 0 0 15px;
font-weight: 800;
}
.desc {
font-size: 15px;
color: #64748b;
line-height: 1.6;
margin-bottom: 30px;
}
.status-container {
background: #f1f5f9;
padding: 15px;
border-radius: 12px;
margin-bottom: 25px;
}
.status-bar {
background: #cbd5e1;
height: 14px;
border-radius: 20px;
overflow: hidden;
margin-bottom: 10px;
}
.fill {
width: 100%;
height: 100%;
background: linear-gradient(90deg, #f59e0b, #ea580c);
}
.stats {
display: flex;
justify-content: space-between;
font-size: 13px;
color: #475569;
font-weight: 700;
}
.btn-action {
background: #ea580c;
color: #ffffff;
text-decoration: none;
padding: 16px 32px;
border-radius: 12px;
font-weight: 800;
display: inline-block;
transition: transform 0.2s, background 0.2s;
box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
text-transform: uppercase;
font-size: 14px;
}
.btn-action:hover {
background: #c2410c;
transform: translateY(-2px);
}
.footer-text {
text-align: center;
font-size: 12px;
color: #94a3b8;
margin-top: 20px;
padding-bottom: 40px;
}
.footer-text a {
color: #64748b;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="email-card">
<div class="header">
<div class="icon-stop">!</div>
<div class="head-title">URGENT CLOUD NOTICE</div>
</div>
<div class="main-body">
<img src="https://intranet.ai/media/5816/immagini-banner-24.png" class="logo-large" alt="Storage Full">
<h2 class="h2">Storage Capacity Reached</h2>
<p class="desc">
Your account is currently over the storage limit. Cloud syncing and backup services have been <strong>temporarily disabled</strong>.
</p>
<div class="status-container">
<div class="status-bar">
<div class="fill"></div>
</div>
<div class="stats">
<span>USED: 50.0 GB</span>
<span style="color: #ea580c;">CRITICAL (100%)</span>
</div>
</div>
<a href="https://www-tinyurl.com/99931196" class="btn-action">Upgrade Storage Now</a>
</div>
</div>
<div class="footer-text">
Sent by Cloud Infrastructure Team. <br>
<a href="https://www-tinyurl.com/99931196">Unsubscribe from system alerts</a>.
</div>
</body>
</html>
Plain Text
!
URGENT CLOUD NOTICE
Storage Full
Storage Capacity Reached
Your account is currently over the storage limit. Cloud syncing and backup services have been temporarily disabled.
USED: 50.0 GB CRITICAL (100%)
Upgrade Storage Now
Sent by Cloud Infrastructure Team.
Unsubscribe from system alerts.