Inboxes List

Create an inbox to save and track emails. It's free!

+New inbox

<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="utf-8"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   iCloud - Storage Almost Full
  </title>
  <style>
   /* RESET & BASICS */
        body {
            margin: 0;
            padding: 0;
            background-color: #f5f5f7;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            color: #1d1d1f;
            line-height: 1.5;
        }

        table {
            border-collapse: collapse;
            mso-table-lspace: 0pt;
            mso-table-rspace: 0pt;
        }

        a {
            text-decoration: none;
        }

        /* CONTAINER */
        .wrapper {
            width: 100%;
            table-layout: fixed;
            background-color: #f5f5f7;
            padding: 40px 0;
        }

        .main-content {
            background-color: #ffffff;
            margin: 0 auto;
            max-width: 600px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        /* HEADER */
        .header {
            padding: 32px 32px 16px;
            border-bottom: 1px solid #f2f2f2;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo img {
            width: 80px;
            height: auto;
            display: block;
        }

        .badge {
            background: #f2f2f2;
            color: #1d1d1f;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 30px;
            letter-spacing: 0.2px;
        }

        .account {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .account-email {
            color: #86868b;
            font-size: 14px;
        }

        .avatar {
            width: 36px;
            height: 36px;
            background: #0071e3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
            font-size: 16px;
        }

        .date {
            color: #86868b;
            font-size: 13px;
        }

        /* ALERT SECTION */
        .alert-section {
            padding: 24px 32px;
            background: #fff9f0;
            border-bottom: 1px solid #ffe5c4;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .alert-icon {
            width: 44px;
            height: 44px;
            background: #ff9f38;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }

        .alert-content {
            flex: 1;
        }

        .alert-title {
            color: #1d1d1f;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 2px;
        }

        .alert-message {
            color: #515154;
            font-size: 14px;
        }

        /* MAIN CONTENT */
        .content {
            padding: 32px;
        }

        .headline {
            font-size: 24px;
            font-weight: 700;
            color: #1d1d1f;
            margin: 0 0 8px 0;
        }

        .subhead {
            font-size: 16px;
            color: #515154;
            margin: 0 0 24px 0;
        }

        /* STORAGE CARD */
        .storage-card {
            background: #f8f8fa;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 28px;
            border: 1px solid #f0f0f2;
        }

        .storage-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .storage-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1d1d1f;
            margin: 0;
        }

        .storage-link {
            color: #0071e3;
            font-size: 14px;
            font-weight: 500;
        }

        /* PROGRESS BAR */
        .progress-wrapper {
            margin-bottom: 20px;
        }

        .progress-labels {
            display: flex;
            justify-content: space-between;
            color: #86868b;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .progress-bar {
            background: #e8e8ed;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .progress-fill {
            height: 100%;
            width: 99%;
            background: #0071e3;
            border-radius: 4px;
        }

        .progress-note {
            color: #d70015;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* STORAGE DETAILS */
        .storage-details {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        .detail-item {
            text-align: center;
        }

        .detail-color {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            margin: 0 auto 6px;
        }

        .detail-label {
            color: #86868b;
            font-size: 11px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .detail-value {
            color: #1d1d1f;
            font-weight: 600;
            font-size: 13px;
        }

        /* METRICS GRID */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 24px 0;
        }

        .metric-card {
            background: #f8f8fa;
            border-radius: 16px;
            padding: 16px 8px;
            text-align: center;
            border: 1px solid #f0f0f2;
        }

        .metric-number {
            color: #1d1d1f;
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 4px;
        }

        .metric-label {
            color: #86868b;
            font-size: 12px;
            font-weight: 500;
        }

        .metric-badge {
            background: #e8f0fe;
            color: #0071e3;
            font-size: 11px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 30px;
            display: inline-block;
            margin-top: 8px;
        }

        /* OFFER CARD */
        .offer-card {
            background: #f0f7ff;
            border-radius: 20px;
            padding: 24px;
            margin: 28px 0 16px;
            border: 1px solid #cce4ff;
        }

        .offer-tag {
            background: #0071e3;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }

        .offer-layout {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .price-block {
            background: white;
            border-radius: 18px;
            padding: 18px;
            text-align: center;
            min-width: 130px;
            border: 1px solid #e0e0e5;
        }

        .price-current {
            color: #1d1d1f;
            font-weight: 700;
            font-size: 34px;
            line-height: 1;
        }

        .price-current small {
            font-size: 14px;
            color: #86868b;
            font-weight: 400;
        }

        .price-original {
            color: #999;
            font-size: 14px;
            text-decoration: line-through;
            margin-top: 4px;
        }

        .offer-details h3 {
            color: #1d1d1f;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 6px;
        }

        .offer-details p {
            color: #515154;
            font-size: 14px;
            margin-bottom: 8px;
        }

        /* FEATURE LIST WITH PROFESSIONAL SVG ICONS */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #515154;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: #0071e3;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* SPECIFIC ICONS FOR OFFER */
        .storage-icon svg {
            stroke: #0071e3;
        }

        .privacy-icon svg {
            stroke: #34c759;
        }

        .family-icon svg {
            stroke: #af52de;
        }

        /* BUTTON */
        .btn {
            display: inline-block;
            background: #0071e3;
            color: #ffffff !important;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 48px;
            text-align: center;
            width: 100%;
            max-width: 300px;
            transition: background 0.2s;
            border: none;
        }

        .btn:hover {
            background: #0077ed;
        }

        .button-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
        }

        .secure-note {
            color: #86868b;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .secure-note svg {
            width: 16px;
            height: 16px;
            stroke: #86868b;
            stroke-width: 2;
            fill: none;
        }

        .learn-link {
            color: #0071e3;
            font-size: 14px;
            font-weight: 500;
        }

        /* FOOTER */
        .footer {
            padding: 32px;
            text-align: center;
            background: #f8f8fa;
            border-top: 1px solid #f0f0f2;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #515154;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #0071e3;
        }

        .unsubscribe {
            color: #d70015 !important;
        }

        .copyright {
            color: #86868b;
            font-size: 11px;
        }

        /* RESPONSIVE */
        @media screen and (max-width: 600px) {
            .main-content {
                width: 100% !important;
                border-radius: 16px !important;
            }

            .offer-layout {
                flex-direction: column;
                align-items: stretch;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .storage-details {
                grid-template-columns: repeat(2, 1fr);
            }

            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .account {
                width: 100%;
                justify-content: space-between;
            }

            .content {
                padding: 24px;
            }
        }
  </style>
 </head>
 <body>
  <!-- HIDDEN PREHEADER -->
  <div style="display:none; font-size:1px; line-height:1px; max-height:0; max-width:0; opacity:0; overflow:hidden; mso-hide:all;">
   iCloud - Storage almost full: 14.9 GB used of 15 GB
  </div>
  <table border="0" cellpadding="0" cellspacing="0" class="wrapper" role="presentation">
   <tr>
    <td align="center">
     <!-- MAIN CARD -->
     <table border="0" cellpadding="0" cellspacing="0" class="main-content" role="presentation" width="600">
      <!-- HEADER -->
      <tr>
       <td class="header">
        <div class="header-top">
         <div class="logo">
          <a target="_blank">
           <img alt="iCloud" src="https://inboxflows.com/_/image/https%253A%252F%252Fupload.wikimedia.org%252Fwikipedia%252Fcommons%252Fthumb%252F1%252F1c%252FICloud_logo.svg%252F1200px-ICloud_logo.svg.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ1cGxvYWQud2lraSIsInRpbWUiOjE3NzIyOTA4MjIuMDY3NTM1fQ:1vwLnq:UR5gGToJiAegHMl-KFliEEd_mmmB8AccblnrBK5AvRY"/>
          </a>
          <span class="badge">
           iCloud+
          </span>
         </div>
         <div class="account">
          <span class="account-email">
           member@icloud.com
          </span>
          <div class="avatar">
           M
          </div>
         </div>
        </div>
        <div class="date">
         February 24, 2026
        </div>
       </td>
      </tr>
      <!-- ALERT SECTION -->
      <tr>
       <td class="alert-section">
        <div class="alert-icon">
         ⚠️
        </div>
        <div class="alert-content">
         <div class="alert-title">
          iCloud storage almost full
         </div>
         <div class="alert-message">
          You have used 14.9 GB out of 15 GB
         </div>
        </div>
       </td>
      </tr>
      <!-- MAIN CONTENT -->
      <tr>
       <td class="content">
        <h1 class="headline">
         Your storage is almost full
        </h1>
        <p class="subhead">
         Some services may be interrupted if you don't free up space.
        </p>
        <!-- STORAGE CARD -->
        <div class="storage-card">
         <div class="storage-header">
          <h3>
           Storage breakdown
          </h3>
          <a class="storage-link" target="_blank">
           Manage →
          </a>
         </div>
         <div class="progress-wrapper">
          <div class="progress-labels">
           <span>
            14.9 GB used
           </span>
           <span>
            0.1 GB remaining
           </span>
          </div>
          <div class="progress-bar">
           <div class="progress-fill" style="width:99%">
           </div>
          </div>
          <div class="progress-note">
           <span>
            ⚠️
           </span>
           Critical space - action recommended
          </div>
         </div>
         <div class="storage-details">
          <div class="detail-item">
           <div class="detail-color" style="background:#FF9F38;">
           </div>
           <div class="detail-label">
            Photos
           </div>
           <div class="detail-value">
            8.2 GB
           </div>
          </div>
          <div class="detail-item">
           <div class="detail-color" style="background:#AF52DE;">
           </div>
           <div class="detail-label">
            Documents
           </div>
           <div class="detail-value">
            3.1 GB
           </div>
          </div>
          <div class="detail-item">
           <div class="detail-color" style="background:#34C759;">
           </div>
           <div class="detail-label">
            Backups
           </div>
           <div class="detail-value">
            1.8 GB
           </div>
          </div>
          <div class="detail-item">
           <div class="detail-color" style="background:#0071E3;">
           </div>
           <div class="detail-label">
            Messages
           </div>
           <div class="detail-value">
            1.8 GB
           </div>
          </div>
         </div>
        </div>
        <!-- METRICS -->
        <div class="metrics-grid">
         <div class="metric-card">
          <div class="metric-number">
           1,247
          </div>
          <div class="metric-label">
           Photos
          </div>
          <div class="metric-badge">
           +342 videos
          </div>
         </div>
         <div class="metric-card">
          <div class="metric-number">
           89
          </div>
          <div class="metric-label">
           Documents
          </div>
          <div class="metric-badge">
           Pages, PDF
          </div>
         </div>
         <div class="metric-card">
          <div class="metric-number">
           8,432
          </div>
          <div class="metric-label">
           Messages
          </div>
          <div class="metric-badge">
           iMessage
          </div>
         </div>
        </div>
        <!-- OFFER CARD WITH PROFESSIONAL SVG ICONS -->
        <div class="offer-card">
         <span class="offer-tag">
          SPECIAL MEMBER OFFER
         </span>
         <div class="offer-layout">
          <div class="price-block">
           <div class="price-current">
            €2
            <small>
             /year
            </small>
           </div>
           <div class="price-original">
            €19.99/year
           </div>
          </div>
          <div class="offer-details">
           <h3>
            Upgrade to iCloud+ 250GB
           </h3>
           <p>
            Get 250GB of storage and exclusive benefits:
           </p>
           <!-- FEATURE LIST WITH NEW ICONS -->
           <ul class="feature-list">
            <li>
             <span class="feature-icon storage-icon">
              <svg viewbox="0 0 24 24">
               <rect fill="none" height="16" rx="2" ry="2" stroke="currentColor" width="20" x="2" y="4">
               </rect>
               <line stroke="currentColor" x1="2" x2="22" y1="8" y2="8">
               </line>
               <circle cx="7" cy="16" fill="none" r="2" stroke="currentColor">
               </circle>
               <circle cx="17" cy="16" fill="none" r="2" stroke="currentColor">
               </circle>
               <line stroke="currentColor" x1="10" x2="10" y1="8" y2="12">
               </line>
               <line stroke="currentColor" x1="14" x2="14" y1="8" y2="12">
               </line>
              </svg>
             </span>
             250 GB total storage
            </li>
            <li>
             <span class="feature-icon privacy-icon">
              <svg viewbox="0 0 24 24">
               <rect fill="none" height="11" rx="2" ry="2" stroke="currentColor" width="18" x="3" y="11">
               </rect>
               <path d="M7 11V7a5 5 0 0 1 10 0v4" fill="none" stroke="currentColor">
               </path>
               <circle cx="12" cy="16" fill="none" r="1.5" stroke="currentColor">
               </circle>
              </svg>
             </span>
             iCloud Private Relay
            </li>
            <li>
             <span class="feature-icon family-icon">
              <svg viewbox="0 0 24 24">
               <circle cx="9" cy="8" fill="none" r="4" stroke="currentColor">
               </circle>
               <circle cx="15" cy="8" fill="none" r="4" stroke="currentColor">
               </circle>
               <path d="M3 16v2h18v-2c0-2.2-1.8-4-4-4H7c-2.2 0-4 1.8-4 4z" fill="none" stroke="currentColor">
               </path>
               <line stroke="currentColor" x1="12" x2="12" y1="12" y2="14">
               </line>
              </svg>
             </span>
             Share with your family
            </li>
           </ul>
          </div>
         </div>
         <a class="btn" target="_blank">
          CLAIM OFFER
         </a>
         <div class="button-footer">
          <span class="secure-note">
           <svg viewbox="0 0 24 24">
            <rect fill="none" height="11" rx="2" ry="2" stroke="currentColor" width="18" x="3" y="11">
            </rect>
            <path d="M7 11V7a5 5 0 0 1 10 0v4" fill="none" stroke="currentColor">
            </path>
            <circle cx="12" cy="16.5" fill="none" r="1" stroke="currentColor">
            </circle>
           </svg>
           Secure payment
          </span>
          <a class="learn-link" target="_blank">
           Learn more →
          </a>
         </div>
        </div>
       </td>
      </tr>
      <!-- FOOTER -->
      <tr>
       <td class="footer">
        <div class="footer-links">
         <a>
          Help
         </a>
         <a>
          Terms of Use
         </a>
         <a>
          Privacy
         </a>
         <a class="unsubscribe">
          Unsubscribe
         </a>
        </div>
        <div class="copyright">
         © 2026 iCloud Services. All rights reserved.
         <br/>
         In accordance with data protection laws, you have the right to access and rectify your information.
        </div>
        <!-- TRACKING PIXEL -->
        <img height="1" src="https://inboxflows.com/_/image/cloud-support.cachingtech.com%252Ftrack%252F3FmxWF3647RVApY196AgzY0lrS0Pecn0zsET5/?inbox_flows_img_sig=eyJwYXRoIjoiY2xvdWQtc3VwcG9ydC5jYWNoaW5ndGVjaCIsInRpbWUiOjE3NzIyOTA4MjIuMDY4MTYxNX0:1vwLnq:yY7QA4K_qHNC3OxntOZQQcfWbVtlYWT91WJgUoPiqMs" style="display:none;" width="1"/>
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <!-- HIDDEN MESSAGE -->
  <div style="font-size:1px; color:#f5f5f7; visibility:hidden;">
   iCloud - Storage full - 250GB offer €2
  </div>
 </body>
</html>