Back
Create New Campaign
Design your HTML email campaign
Campaign Details
Basic information about your campaign
Campaign Name *
Description
HTML Content
Design your email campaign with templates, variables, and live preview
Template Gallery
Variables
Snippets
Copy HTML
Code Editor
Preview
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Campaign</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 600px; margin: 0 auto; padding: 20px; } .header { background-color: #2563eb; color: white; padding: 20px; text-align: center; border-radius: 8px 8px 0 0; } .content { background-color: #f9fafb; padding: 30px; } .button { display: inline-block; background-color: #2563eb; color: white; padding: 12px 24px; text-decoration: none; border-radius: 6px; margin: 20px 0; } .footer { background-color: #f3f4f6; padding: 20px; text-align: center; font-size: 12px; color: #6b7280; border-radius: 0 0 8px 8px; } </style> </head> <body> <div class="header"> <h1>Welcome to Our Campaign</h1> </div> <div class="content"> <h2>Hello!</h2> <p>This is a sample campaign email. Customize this HTML to match your needs.</p> <a href="#" class="button">Take Action</a> <p>You can add images, links, and any HTML content you need.</p> </div> <div class="footer"> <p>© 2025 Your Company. All rights reserved.</p> <p>Unsubscribe | View in browser</p> </div> </body> </html>
61 lines
Cancel
Create Campaign