Welcome Email Series

Professional welcome email template

DEMO / SAMPLE

UnisonWave

Welcome, [First Name]!

We're thrilled to have you join the UnisonWave community! You've taken the first step toward transforming your B2B marketing and demand generation efforts.

As a new member, you now have access to:

  • Expert marketing insights and strategies
  • Exclusive resources and templates
  • Best practices for lead generation
  • Industry trends and case studies

If you have any questions, our team is here to help. Simply reply to this email or visit our support center.

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>Welcome to UnisonWave</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: 30px;
        }
        .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;
        }
        .footer {
            background-color: #f8f9fa;
            padding: 30px;
            text-align: center;
            font-size: 14px;
            color: #6c757d;
        }
        .social-links {
            margin: 20px 0;
        }
        .social-links a {
            margin: 0 10px;
            color: #5b04a0;
            text-decoration: none;
        }
    </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">Welcome, [First Name]!</h2>
            <p class="message">
                We're thrilled to have you join the UnisonWave community! You've taken the first step 
                toward transforming your B2B marketing and demand generation efforts.
            </p>
            <p class="message">
                As a new member, you now have access to:
            </p>
            <ul style="color: #3c4257; line-height: 1.8;">
                <li>Expert marketing insights and strategies</li>
                <li>Exclusive resources and templates</li>
                <li>Best practices for lead generation</li>
                <li>Industry trends and case studies</li>
            </ul>
            <div style="text-align: center;">
                <a href="#" class="cta-button">Get Started</a>
            </div>
            <p class="message">
                If you have any questions, our team is here to help. Simply reply to this email 
                or visit our support center.
            </p>
            <p class="message">
                Best regards,<br>
                The UnisonWave Team
            </p>
        </div>
        <div class="footer">
            <p>© 2025 UnisonWave. com, All rights reserved.</p>
            <div class="social-links">
                <a href="#">LinkedIn</a> | <a href="#">Twitter</a> | <a href="#">Website</a>
            </div>
            <p style="margin-top: 20px; font-size: 12px;">
                You're receiving this email because you signed up for UnisonWave.<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>