Return-Path: <support@wallis.com.au>
From: Verify Now <support@wallis.com.au>
To: bruce@untroubled.org
Subject: Best Buy doesn't run this offer on TV for a reason
Message-ID: <abb634d7bd664200b26b495c36829d1a@wallis.com.au>
Date: Mon, 08 Jun 2026 19:30:35 +0000
MIME-Version: 1.0
Content-Type: text/html; charset=utf-8
Content-Length: 10351

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Best Buy Exclusive Offer</title>
    <style>
        :root {
            --bb-blue: #0046be;
            --bb-dark-blue: #00338a;
            --bb-yellow: #ffe000;
            --bb-yellow-hover: #ffd000;
            --text-main: #1d252c;
            --text-muted: #555555;
            --bg-body: #f4f6f8;
            --bg-card: #ffffff;
            --border-color: #e1e5ea;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: var(--bg-body);
            padding: 30px 15px;
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
        }

        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--bg-card);
            border-top: 5px solid var(--bb-blue);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-radius: 0 0 8px 8px;
            overflow: hidden;
        }

        .header {
            padding: 30px 40px;
            text-align: center;
            background-color: #ffffff;
        }

        .logo img {
            width: 140px;
            display: block;
            margin: 0 auto;
        }

        .exclusive-badge {
            display: inline-block;
            margin-top: 15px;
            background-color: var(--text-main);
            color: #ffffff;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 700;
        }

        .hero-section {
            padding: 0 40px 20px;
            text-align: center;
        }

        .headline {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .headline span {
            color: var(--bb-blue);
        }

        .subheadline {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 25px;
        }

        .product-hero-image {
            width: 100%;
            max-width: 280px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
        }

        .benefits-box {
            background-color: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            margin: 0 40px 30px;
            text-align: left;
        }

        .benefits-title {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--bb-blue);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--text-main);
            line-height: 1.4;
        }

        .benefit-item:last-child {
            margin-bottom: 0;
        }

        .check-icon {
            color: #10b981; /* Green check */
            font-weight: bold;
            margin-right: 10px;
            font-size: 16px;
        }

        .the-catch {
            padding: 0 40px;
            text-align: center;
            margin-bottom: 25px;
        }

        .the-catch p {
            font-size: 16px;
            line-height: 1.6;
        }

        .highlight-text {
            font-weight: 700;
            background-color: #fcf6c7;
            padding: 2px 6px;
            border-radius: 3px;
        }

        .priority-notice {
            background-color: #fff1f2;
            border: 1px solid #ffe4e6;
            border-left: 4px solid #e11d48;
            padding: 15px 20px;
            margin: 0 40px 30px;
            border-radius: 0 4px 4px 0;
            text-align: left;
        }

        .notice-text {
            font-size: 14px;
            line-height: 1.5;
            color: #be123c;
            margin: 0;
        }

        .cta-container {
            text-align: center;
            padding: 0 40px 40px;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--bb-yellow);
            color: #000000;
            text-decoration: none;
            padding: 18px 36px;
            font-size: 18px;
            font-weight: 800;
            border-radius: 6px;
            transition: background-color 0.2s ease, transform 0.1s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            width: 100%;
        }

        .btn-primary:hover {
            background-color: var(--bb-yellow-hover);
            transform: translateY(-1px);
        }

        .footer {
            background-color: #ffffff;
            padding: 30px 40px;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-link {
            color: var(--bb-blue);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            margin: 0 10px;
        }

        .footer-link:hover {
            text-decoration: underline;
        }

        .footer-legal {
            font-size: 11px;
            line-height: 1.6;
            color: #888888;
            margin-bottom: 15px;
        }

        .footer-manage {
            font-size: 11px;
            color: #888888;
        }

        .footer-manage a {
            color: #888888;
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            body { padding: 10px; }
            .header { padding: 25px 20px 15px; }
            .hero-section { padding: 0 20px 20px; }
            .headline { font-size: 24px; }
            .benefits-box, .the-catch, .priority-notice, .cta-container { 
                margin-left: 20px; 
                margin-right: 20px; 
                padding-left: 20px;
                padding-right: 20px;
            }
            .the-catch { margin-left: 0; margin-right: 0; }
            .footer { padding: 25px 20px; }
            .btn-primary { padding: 16px 20px; font-size: 16px; }
        }
    </style>
</head>

<body>
    <div class="email-container">

        <div class="header">
            <div class="logo">
                <img src="https://i.8upload.com/image/54359566814bb02e/logo-3.webp" alt="Best Buy">
            </div>
            <div class="exclusive-badge">Customer Exclusive</div>
        </div>

        <div class="hero-section">
            <h1 class="headline">Protect Your Drive.<br><span>Capture Every Moment.</span></h1>
            <p class="subheadline">Upgrade your vehicle's safety with the premium DashOne Pro. Available today at an exclusive VIP price.</p>
            
            <a href="https://storage.googleapis.com/sabahdashcamus/ls" style="text-decoration: none; border: none; display: block;">
                <img src="https://i.8upload.com/image/3063ce17d0618937/product1-1.webp" alt="DashOne Pro Dash Camera" class="product-hero-image">
            </a>
        </div>

        <div class="benefits-box">
            <div class="benefits-title">Why Drivers Choose DashOne Pro:</div>
            <div class="benefit-item">
                <span class="check-icon">✓</span>
                <span><strong>Crystal Clear HD Recording:</strong> Never miss a license plate, day or night.</span>
            </div>
            <div class="benefit-item">
                <span class="check-icon">✓</span>
                <span><strong>Automated Incident Detection:</strong> Instantly saves footage during sudden stops or collisions.</span>
            </div>
            <div class="benefit-item">
                <span class="check-icon">✓</span>
                <span><strong>Absolute Peace of Mind:</strong> Irrefutable proof for insurance claims and traffic disputes.</span>
            </div>
        </div>

        <div class="the-catch">
            <p>
                <strong>How to get it:</strong> Simply answer 8 quick questions about your driving habits, and your <span class="highlight-text">60% discount will be applied automatically</span> at checkout. No promo codes required.
            </p>
        </div>

        <div class="priority-notice">
            <p class="notice-text">
                <strong>⏳ High Demand Notice:</strong> We only have <strong>100 discount codes</strong> allocated for this promotion. Once they are claimed, this offer will expire.
            </p>
        </div>

        <div class="cta-container">
            <a href="https://storage.googleapis.com/sabahdashcamus/ls" class="btn-primary">Answer 8 Questions & Claim 60% Off</a>
        </div>

        <div class="footer">
            <div class="footer-links">
                <a href="https://storage.googleapis.com/sabahdashcamus/ls" class="footer-link">Privacy Policy</a>
                <a href="https://storage.googleapis.com/sabahdashcamus/ls" class="footer-link">Terms of Use</a>
                <a href="https://storage.googleapis.com/sabahdashcamus/ls" class="footer-link">Help Center</a>
                <a href="https://storage.googleapis.com/sabahdashcamus/ls" class="footer-link">My Account</a>
            </div>

            <p class="footer-legal">
                This invitation was sent because you are a valued Best Buy customer. Participation is voluntary. Limit one discount per customer. Offer valid while supplies last.<br><br>
                &copy; 2026 Best Buy. All rights reserved.
            </p>

            <p class="footer-manage">
                <a href="https://storage.googleapis.com/dashcamnewusub/ls">Unsubscribe here</a>
                &nbsp;&bull;&nbsp;
                <a href="https://storage.googleapis.com/sabahdashcamus/ls">Manage Preferences</a>
            </p>
        </div>

    </div>
</body>

</html>
