Lead Nurture Sequence

Multi-touch email campaign for nurturing leads

DEMO / SAMPLE

UnisonWave

Thank You for Your Interest, [First Name]!

We noticed you recently showed interest in our B2B marketing solutions. We'd love to help you achieve your lead generation goals.

📚 Free Resource: The Complete Guide to B2B Lead Generation

Download our comprehensive guide covering proven strategies, best practices, and real-world case studies from successful B2B companies.

In this guide, you'll discover:

  • How to identify and target your ideal customers
  • Proven lead generation strategies that work
  • Tools and technologies to scale your efforts
  • Real case studies with measurable results

Ready to take the next step? Let's schedule a quick call to discuss how we can help accelerate your marketing results.

Best regards,
The UnisonWave Team

© 2025 UnisonWave. com, All rights reserved.

⚠️ This is a demo/sample template for internal purposes only. Not for production use.

HTML Code
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Thank You for Your Interest</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f5f5;
        }
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            position: relative;
        }
        .demo-ribbon {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, #ffc634 0%, #ffd667 100%);
            color: #1a1f36;
            padding: 8px 24px;
            border-bottom-left-radius: 8px;
            font-weight: bold;
            font-size: 12px;
            z-index: 10;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .demo-footer {
            background-color: #fef3c7;
            border-top: 2px solid #fbbf24;
            padding: 16px 24px;
            text-align: center;
        }
        .demo-footer p {
            font-size: 12px;
            color: #92400e;
            font-weight: 500;
            margin: 0;
        }
        .header {
            background: linear-gradient(135deg, #5b04a0 0%, #7a20c4 100%);
            padding: 40px 20px;
            text-align: center;
        }
        .logo {
            color: #ffffff;
            font-size: 28px;
            font-weight: bold;
            margin: 0;
        }
        .content {
            padding: 40px 30px;
        }
        .greeting {
            font-size: 24px;
            color: #1a1f36;
            margin-bottom: 20px;
        }
        .message {
            font-size: 16px;
            line-height: 1.6;
            color: #3c4257;
            margin-bottom: 20px;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #5b04a0 0%, #7a20c4 100%);
            color: #ffffff;
            padding: 14px 32px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            margin: 20px 0;
        }
        .resource-box {
            background-color: #f8f9fa;
            border-left: 4px solid #5b04a0;
            padding: 20px;
            margin: 30px 0;
        }
        .resource-box h3 {
            color: #1a1f36;
            margin-top: 0;
        }
        .footer {
            background-color: #f8f9fa;
            padding: 30px;
            text-align: center;
            font-size: 14px;
            color: #6c757d;
        }
    </style>
</head>
<body>
    <div class="email-container">
        <div class="demo-ribbon">DEMO / SAMPLE</div>
        <div class="header">
            <h1 class="logo">UnisonWave</h1>
        </div>
        <div class="content">
            <h2 class="greeting">Thank You for Your Interest, [First Name]!</h2>
            <p class="message">
                We noticed you recently showed interest in our B2B marketing solutions. 
                We'd love to help you achieve your lead generation goals.
            </p>
            <div class="resource-box">
                <h3>📚 Free Resource: The Complete Guide to B2B Lead Generation</h3>
                <p style="margin-bottom: 15px;">
                    Download our comprehensive guide covering proven strategies, best practices, 
                    and real-world case studies from successful B2B companies.
                </p>
                <a href="#" class="cta-button">Download Free Guide</a>
            </div>
            <p class="message">
                In this guide, you'll discover:
            </p>
            <ul style="color: #3c4257; line-height: 1.8; margin-bottom: 30px;">
                <li>How to identify and target your ideal customers</li>
                <li>Proven lead generation strategies that work</li>
                <li>Tools and technologies to scale your efforts</li>
                <li>Real case studies with measurable results</li>
            </ul>
            <p class="message">
                Ready to take the next step? Let's schedule a quick call to discuss how 
                we can help accelerate your marketing results.
            </p>
            <div style="text-align: center;">
                <a href="#" class="cta-button">Schedule a Call</a>
            </div>
            <p class="message">
                Best regards,<br>
                [Your Name]<br>
                <strong>UnisonWave Team</strong>
            </p>
        </div>
        <div class="footer">
            <p>© 2025 UnisonWave. com, All rights reserved.</p>
            <p style="margin-top: 20px; font-size: 12px;">
                You're receiving this email because you showed interest in our services.<br>
                <a href="#" style="color: #5b04a0;">Unsubscribe</a> | <a href="#" style="color: #5b04a0;">Update Preferences</a>
            </p>
        </div>
        <div class="demo-footer">
            <p>⚠️ This is a demo/sample template for internal purposes only. Not for production use.</p>
        </div>
    </div>
</body>
</html>