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, user-scalable=yes" name="viewport"/>
  <title>
   Kohl's Shopper Survey Invitation
  </title>
  <style>
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #EEF2F5;
            padding: 32px 20px;
            line-height: 1.5;
        }

        .email-container {
            max-width: 560px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
        }

        /* Trust Bar */
        .trust-bar {
            background: #984052;
            padding: 10px 24px;
            text-align: center;
            border-bottom: 2px solid #4A9E34;
        }
        .trust-bar p {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #FFD966;
            margin: 0;
        }

        /* Header */
        .header {
            padding: 22px 28px 12px 28px;
            background: #ffffff;
            border-bottom: 1px solid #E8EDF2;
        }
        .header img {
            display: block;
            max-width: 110px;
            height: auto;
        }

        /* Content */
        .content {
            padding: 22px 28px 20px;
        }
        .greeting {
            font-size: 20px;
            font-weight: 800;
            color: #984052;
            margin-bottom: 14px;
        }
        .paragraph {
            font-size: 14px;
            line-height: 1.6;
            color: #2A3A4A;
            margin-bottom: 14px;
        }
        .paragraph strong {
            color: #984052;
        }
        .highlight-box {
            background: #F9F0F3;
            border-left: 4px solid #4A9E34;
            padding: 14px 18px;
            margin: 16px 0 18px;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box p {
            font-size: 13px;
            line-height: 1.5;
            color: #2A3A4A;
            margin: 0;
        }
        .highlight-box strong {
            color: #4A9E34;
        }

        .cta-link {
            display: inline-block;
            background: linear-gradient(135deg, #984052 0%, #7A3442 100%);
            color: #FFFFFF;
            font-weight: 700;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 16px rgba(152, 64, 82, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
            margin-top: 6px;
        }
        .cta-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(152, 64, 82, 0.35);
            background: linear-gradient(135deg, #7A3442 0%, #5C2833 100%);
        }

        /* Product Section – LARGER & CLICKABLE */
        .product-section {
            background: linear-gradient(135deg, #F9F0F3 0%, #F3E8EC 100%);
            padding: 28px 28px 32px;
            border-top: 1px solid #E8D0D8;
            border-bottom: 1px solid #E8D0D8;
            text-align: center;
        }
        .product-badge {
            display: inline-block;
            background: #984052;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.5px;
            padding: 4px 14px;
            border-radius: 40px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .product-link {
            display: inline-block;
            background: #ffffff;
            border-radius: 32px;
            padding: 20px 24px;
            border: 1px solid #E8D0D8;
            box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .product-link:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 32px -12px rgba(152, 64, 82, 0.15);
        }
        .product-image {
            width: 280px;
            max-width: 95%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .product-title {
            font-size: 22px;
            font-weight: 800;
            color: #984052;
            margin: 18px 0 10px;
            letter-spacing: -0.3px;
        }
        .product-title span {
            color: #4A9E34;
        }
        .product-text {
            font-size: 13px;
            line-height: 1.55;
            color: #3A4A5E;
            max-width: 400px;
            margin: 0 auto 18px auto;
        }
        .product-cta {
            display: inline-block;
            background: #4A9E34;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 60px;
            transition: background 0.2s, transform 0.2s;
        }
        .product-cta:hover {
            background: #3D822C;
            transform: translateY(-2px);
        }

        /* Features Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
            padding: 20px 28px;
            border-bottom: 1px solid #E8EDF2;
            background: #ffffff;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            color: #1E3A4A;
        }
        .check-icon {
            width: 22px;
            height: 22px;
            background: #4A9E34;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Footer */
        .footer {
            background: #F8FAFE;
            padding: 20px 28px 24px;
            text-align: center;
            border-top: 1px solid #E8EDF2;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin-bottom: 14px;
        }
        .footer-links a {
            font-size: 11px;
            font-weight: 600;
            color: #5A6F8F;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #984052;
        }
        .footer-text {
            font-size: 10px;
            color: #7A95AE;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .company-info {
            font-size: 10px;
            font-weight: 600;
            color: #4A6A8A;
            margin-bottom: 10px;
        }
        .acknowledgment {
            font-size: 10px;
            margin-top: 8px;
        }
        .acknowledgment a {
            color: #5A6F8F;
            text-decoration: underline;
        }

        @media (max-width: 520px) {
            body {
                padding: 16px 12px;
            }
            .header {
                padding: 18px 20px 10px 20px;
            }
            .header img {
                max-width: 90px;
            }
            .content {
                padding: 18px 20px 16px;
            }
            .greeting {
                font-size: 18px;
            }
            .paragraph {
                font-size: 13px;
            }
            .product-section {
                padding: 20px 20px 24px;
            }
            .product-link {
                padding: 14px 16px;
            }
            .product-image {
                width: 200px;
            }
            .product-title {
                font-size: 20px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 16px 20px;
            }
            .cta-link {
                font-size: 13px;
                padding: 12px 24px;
            }
            .footer {
                padding: 16px 20px 20px;
            }
        }
  </style>
 </head>
 <body>
  <div class="email-container">
   <!-- Trust Bar -->
   <div class="trust-bar">
    <p>
     ✅ EXCLUSIVE KOHL'S SURVEY •
     <span>
      LIMITED REWARDS
     </span>
    </p>
   </div>
   <!-- Header -->
   <div class="header">
    <img alt="Kohl's" src="https://inboxflows.com/_/image/https%253A%252F%252Fi.8upload.com%252Fimage%252F71df52545f1c96a5%252Fkohl-s.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpLjh1cGxvYWQuYyIsInRpbWUiOjE3ODM5OTU3ODMuMzkxNjU2NH0:1wjSnX:ZXgHGQNYIQ45G_WhuHZ4GCo8h83KobKAiJvL6uQ_Faw"/>
   </div>
   <!-- Content -->
   <div class="content">
    <p class="greeting">
     Dear Kohl's Shopper,
    </p>
    <p class="paragraph">
     You have been specially selected to participate in our customer feedback study. Your thoughts regarding your shopping experience at Kohl's are highly valuable to us as we strive to enhance our service and product selections.
    </p>
    <div class="highlight-box">
     <p>
      🎁
      <strong>
       Your exclusive reward:
      </strong>
      After completing our quick survey, you will be eligible for a limited-time opportunity to claim a brand-new
      <strong>
       Ninja Air Fryer
      </strong>
      (valued at $119.00) as our thank-you gift.
     </p>
    </div>
    <p class="paragraph">
     The survey takes less than
     <strong>
      3 minutes
     </strong>
     to complete. Simply click the link below to share your experience and claim your reward.
    </p>
    <a class="cta-link">
     Start Survey Now →
    </a>
   </div>
   <!-- Product Section – LARGER & CLICKABLE -->
   <div class="product-section">
    <div class="product-badge">
     🎯 SURVEY REWARD
    </div>
    <a class="product-link" rel="noopener noreferrer" target="_blank">
     <img alt="Ninja Air Fryer – Claim Your Reward" class="product-image" src="https://inboxflows.com/_/image/https%253A%252F%252Fi.8upload.com%252Fimage%252Fad8c2ea37a4f3dc2%252Fb619ce3a4290259ce32d5a0ff1f1fd3b.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpLjh1cGxvYWQuYyIsInRpbWUiOjE3ODM5OTU3ODMuMzkyMjg0Nn0:1wjSnX:A9lVyEomBkwXGICEI2zrtyj6lJ_Rg0xovCDDbyv5WTc"/>
    </a>
    <div class="product-title">
     Ninja
     <span>
      Air Fryer
     </span>
    </div>
    <p class="product-text">
     Enjoy guilt-free fried foods with up to 75% less fat than traditional frying methods, delivering crispy, perfect results. Features wide temperature ranges and multiple cooking functions for ultimate kitchen versatility.
    </p>
    <a class="product-cta">
     Claim Reward →
    </a>
   </div>
   <!-- Features -->
   <div class="feature-grid">
    <div class="feature-item">
     <span class="check-icon">
      <svg fill="none" height="10" stroke="white" stroke-width="2" viewbox="0 0 12 10" width="12">
       <path d="M1 5L4 8L11 1">
       </path>
      </svg>
     </span>
     <span>
      75% less fat
     </span>
    </div>
    <div class="feature-item">
     <span class="check-icon">
      <svg fill="none" height="10" stroke="white" stroke-width="2" viewbox="0 0 12 10" width="12">
       <path d="M1 5L4 8L11 1">
       </path>
      </svg>
     </span>
     <span>
      Multi-cooking functions
     </span>
    </div>
    <div class="feature-item">
     <span class="check-icon">
      <svg fill="none" height="10" stroke="white" stroke-width="2" viewbox="0 0 12 10" width="12">
       <path d="M1 5L4 8L11 1">
       </path>
      </svg>
     </span>
     <span>
      Wide temperature range
     </span>
    </div>
    <div class="feature-item">
     <span class="check-icon">
      <svg fill="none" height="10" stroke="white" stroke-width="2" viewbox="0 0 12 10" width="12">
       <path d="M1 5L4 8L11 1">
       </path>
      </svg>
     </span>
     <span>
      Easy to clean
     </span>
    </div>
   </div>
   <!-- Footer -->
   <div class="footer">
    <div class="footer-links">
     <a>
      Privacy Policy
     </a>
     <a>
      Terms of Use
     </a>
     <a>
      Help Center
     </a>
     <a>
      Contact Us
     </a>
    </div>
    <p class="footer-text">
     You received this email because you are a valued customer of Kohl's. This is an invitation-only customer feedback study. Participation is voluntary and subject to terms and conditions.
    </p>
    <div class="company-info">
     © 2026 Kohl's. All rights reserved.
    </div>
    <p class="acknowledgment">
     <a>
      Unsubscribe from survey communications
     </a>
    </p>
   </div>
  </div>
 </body>
</html>