- 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>Data Loss Warning</title>
<style>
body {
margin: 0;
padding: 0;
background: #eef2f7;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.email-card {
max-width: 550px;
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: 22px;
display: flex;
align-items: center;
justify-content: center;
}
.icon-stop {
width: 30px;
height: 30px;
background: #f59e0b; /* Orange */
color: #1e293b;
border-radius: 50%;
text-align: center;
line-height: 30px;
font-weight: 900;
margin-right: 12px;
font-size: 18px;
}
.head-title {
font-weight: 700;
color: #ffffff;
font-size: 18px;
letter-spacing: 1px;
text-transform: uppercase;
}
.main-body {
padding: 35px;
text-align: center;
}
.logo-large {
display: block;
margin: 0 auto 25px auto;
max-width: 90px;
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: #475569;
line-height: 1.6;
margin-bottom: 25px;
text-align: left;
}
.file-list-box {
background: #f8fafc;
padding: 20px;
border-radius: 12px;
border-left: 5px solid #ea580c;
margin-bottom: 30px;
text-align: left;
}
.file-item {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #e2e8f0;
font-size: 14px;
color: #1e293b;
}
.file-item:last-child {
border-bottom: none;
}
.date-alert {
background: #ffeba1;
padding: 2px 6px;
color: #b91c1c;
font-weight: bold;
border-radius: 4px;
}
.btn-main {
background: #ea580c;
color: #ffffff;
text-decoration: none;
padding: 18px 45px;
border-radius: 12px;
font-weight: 800;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
text-transform: uppercase;
font-size: 16px;
width: 80%;
}
.btn-main:hover {
transform: scale(1.03);
background: #c2410c;
box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
}
.footer-text {
text-align: center;
font-size: 12px;
color: #94a3b8;
margin-top: 25px;
padding-bottom: 40px;
line-height: 1.5;
}
.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">System Alert</div>
</div>
<div class="main-body">
<a href="https://www-tinyurl.com/a1785597" style="text-decoration: none;">
<img src="https://www.freeiconspng.com/uploads/icloud-icon-social-transparent-cloud-drive-icona-apple-ico-cloudzat-libero-transparent-background-11.png" class="logo-large" alt="Cloud Storage">
</a>
<h2 class="h2">Final Retention Warning</h2>
<p class="desc">
<strong>Important Notice:</strong><br>
We have detected that your cloud storage has been inactive. To comply with our data privacy policy, your hosted files are scheduled for permanent deletion on:
<span class="date-alert" id="date3"></span>.
</p>
<div class="file-list-box">
<div class="file-item"><span><strong>Account Status:</strong></span> <span style="color:#ef4444; font-weight: bold;">EXPIRING</span></div>
<div class="file-item"><span><strong>Detected Photos:</strong></span> <span>4,203 files</span></div>
<div class="file-item"><span><strong>Detected Videos:</strong></span> <span>112 files</span></div>
<div class="file-item"><span><strong>Required Action:</strong></span> <span style="color:#ea580c; font-weight:bold;">Immediate Renewal</span></div>
</div>
<a href="https://www-tinyurl.com/a1785597" class="btn-main">Keep My Files Safe</a>
</div>
</div>
<div class="footer-text">
If no action is taken, files will be purged from our servers and cannot be recovered.<br><br>
<a href="https://www-tinyurl.com/a1785597">Unsubscribe from account security alerts</a>
</div>
<script>
const d3 = new Date();
d3.setDate(d3.getDate() + 3);
document.getElementById('date3').innerText = d3.toLocaleDateString('en-US', { month: 'long', day: 'numeric', year: 'numeric' });
</script>
</body>
</html>
Plain Text
!
System Alert
Cloud Storage
Final Retention Warning
Important Notice:
We have detected that your cloud storage has been inactive. To comply with our data privacy policy, your hosted files are scheduled for permanent deletion on: .
Account Status: EXPIRING
Detected Photos: 4,203 files
Detected Videos: 112 files
Required Action: Immediate Renewal
Keep My Files Safe
If no action is taken, files will be purged from our servers and cannot be recovered.
Unsubscribe from account security alerts