Getting Started with CN Blog Mailer
Your complete guide to setting up automated newsletters for your WordPress blog
Quick Start Guide
Get CN Blog Mailer up and running in just 5 minutes! Follow these simple steps to start building your subscriber list and sending automated newsletters.
1 Installation
Option A: Install from WordPress.org (Free Version)
- Log into your WordPress admin dashboard
- Navigate to Plugins → Add New
- Search for
CN Blog Mailer - Click Install Now on the CN Blog Mailer plugin
- Click Activate once installation is complete
Option B: Manual Installation
- Download the plugin ZIP file
- Go to Plugins → Add New → Upload Plugin
- Choose the ZIP file and click Install Now
- Click Activate Plugin
You'll see a new "CN Blog Mailer" menu item in your WordPress admin sidebar.
2 Initial Configuration
- Access Settings: Go to CN Blog Mailer → Settings in your WordPress admin
- Configure Email Settings:
- From Name: Your blog name or company name
- From Email: The email address newsletters will be sent from
- Reply-To Email: Where subscribers can reply
- SMTP Configuration (Recommended): For reliable email delivery, configure SMTP:
- Gmail, Outlook, SendGrid, Mailgun, etc.
- Enter your SMTP host, port, username, and password
- Send a test email to verify it works
Using SMTP ensures your emails reach subscribers' inboxes instead of spam folders. Free services like Gmail work great for small lists!
CN Blog Mailer uses WordPress's native wp_mail() function to send emails. This means email deliverability depends entirely on your WordPress hosting and server configuration, not the plugin itself.
If your emails aren't being delivered or are going to spam, you need to configure an SMTP service. We strongly recommend using one of these plugins:
- WP Mail SMTP - Most popular SMTP plugin (free)
- Post SMTP - Full-featured alternative (free)
- FluentSMTP - Modern, lightweight option (free)
Recommended SMTP Services:
- Brevo (formerly Sendinblue) - 300 emails/day free
- SendGrid - 100 emails/day free
- Mailgun - Pay-as-you-go, excellent deliverability
- Amazon SES - Very affordable for high volume
- Gmail SMTP - Good for small lists (500/day limit)
3 Add Your First Subscribers
There are several ways to build your subscriber list:
A. Manual Addition
- Go to CN Blog Mailer → Subscribers
- Click Add New Subscriber
- Enter email address and name
- Click Save
B. Subscription Widget
- Go to Appearance → Widgets
- Add the CN Blog Mailer Subscribe widget to your sidebar
- Customize the title and button text
- Visitors can now subscribe from your sidebar
C. Subscription Form Shortcode
Add this shortcode anywhere on your site:
[wpbm_subscribe_form]
Place it in posts, pages, or even your footer to collect subscribers.
D. Import Existing Subscribers (Starter+)
- Go to CN Blog Mailer → Import/Export
- Upload a CSV file with email addresses
- Map columns (Email, Name, etc.)
- Click Import
4 Customize Your Email Template
- Navigate to CN Blog Mailer → Templates
- Choose from pre-designed templates or create your own
- Customize:
- Header: Add your logo and brand colors
- Layout: Single or multi-column post display
- Footer: Add social links and contact info
- Use the Preview button to see how it looks
- Click Save Template
5 Send Your First Newsletter
Option A: Automatic Digest (Recommended)
- Go to CN Blog Mailer → Settings → Automation
- Enable Automatic Newsletters
- Choose frequency:
- Daily: Send every day at specified time
- Weekly: Send once per week
- Monthly: Send once per month
- Set the time to send (e.g., 9:00 AM)
- Configure how many recent posts to include
- Click Save Changes
Your newsletters will now be sent automatically according to your schedule. Sit back and watch your engagement grow!
The free version includes automated newsletters with your latest blog posts. Upgrade to Starter or Pro to send custom standalone email campaigns with your own content!
Essential Features You Should Know
✅ Included in FREE Version
📰 Automated Blog Digests
Automatically send newsletters featuring your latest blog posts on a schedule you choose (daily, weekly, or monthly).
👥 Unlimited Subscribers
No limits on your subscriber list. Grow your audience as big as you want!
🎨 Basic Templates
Choose from pre-designed email templates. Customize header, footer, and colors.
⏰ Scheduled Sending
Set your preferred day and time for automated newsletter delivery.
📝 Send Log & History
Keep track of sent newsletters with a 30-day send log.
📋 Subscriber Forms
Embed subscription forms anywhere on your site using widgets or shortcodes.
⭐ Starter & Pro Features
✉️ Custom Email Campaigns (Starter+)
Send standalone emails with your own custom content — not just blog post digests.
📊 Analytics & Tracking (Starter+)
Track open rates, click rates, and subscriber engagement to optimize your newsletters.
📥 CSV Import/Export (Starter+)
Easily import your existing subscriber list or export for backup and migration.
📧 Double Opt-in (Starter+)
GDPR-compliant subscription process ensures high-quality subscriber lists.
🏷️ Tags & Segmentation (Pro)
Organize subscribers with tags and segments for targeted campaigns.
🧪 A/B Testing (Pro)
Test different subject lines and content to see what resonates with your audience.
📈 Advanced Analytics (Pro)
Detailed click tracking, engagement scoring, weekly automated reports, and more.
Best Practices for Success
1. Email Deliverability
- Always use SMTP: Configure a reliable SMTP service (SendGrid, Mailgun, Gmail)
- Authenticate your domain: Set up SPF and DKIM records
- Avoid spam triggers: Don't use all caps, excessive punctuation, or spam words
- Keep a clean list: Remove inactive or bounced subscribers regularly
2. Content Strategy
- Compelling subject lines: Keep them under 50 characters and create curiosity
- Valuable content: Focus on quality over quantity
- Clear call-to-action: Tell readers exactly what you want them to do
- Mobile-friendly: 60% of emails are opened on mobile devices
3. Sending Frequency
- Start conservative: Weekly digests are often ideal
- Be consistent: Send on the same day and time
- Don't overwhelm: Too many emails lead to unsubscribes
- Test and adjust: Monitor engagement metrics and optimize
4. Compliance & Privacy
- Include unsubscribe link: Required by law and builds trust
- Add physical address: CAN-SPAM Act requirement
- Get explicit consent: Use double opt-in when possible
- Honor opt-outs immediately: Process unsubscribes within 24 hours
Send your newsletter at 9-11 AM on Tuesday, Wednesday, or Thursday for the highest open rates!
Common Issues & Solutions
CN Blog Mailer uses WordPress's native wp_mail() function. If emails aren't sending or are going to spam, the issue is almost always with your WordPress hosting, server configuration, or lack of SMTP. See the SMTP section above for solutions.
📧 Emails Not Sending On Time?
WordPress scheduling (WP-Cron) only runs when someone visits your site. If nobody visits at the scheduled time, your emails wait for the next visitor. This is a WordPress limitation, not a plugin issue.
Quick Fix: ALTERNATE_WP_CRON
If cron is stuck, some hosts block WordPress from calling wp-cron.php. Add this to your wp-config.php:
define('ALTERNATE_WP_CRON', true);
✅ Recommended: Install a Cron Manager Plugin
Install one of these free plugins to monitor and fix WordPress scheduling:
- WP Crontrol - Most popular, trusted by 300,000+ sites. View and manage all cron schedules.
- Advanced Cron Manager - Another great option for managing WordPress cron jobs.
⚙️ Advanced: Set Up System Cron (For Developers)
If you have server access, you can disable WP-Cron and use a real system cron:
- Add to
wp-config.php:define('DISABLE_WP_CRON', true); - Add this to your server crontab:
*/5 * * * * curl https://yoursite.com/wp-cron.php >/dev/null 2>&1
This runs every 5 minutes. Ask your hosting provider for help if needed.
📧 Emails Going to Spam?
- Configure SMTP: Don't use WordPress default mail() - use an SMTP plugin
- Set up SPF/DKIM: Authenticate your sending domain (ask your SMTP provider)
- Warm up your domain: Start with small batches if using a new domain
- Avoid spam triggers: Don't use ALL CAPS, excessive punctuation, or spam words in subject lines
- Check blacklists: Use tools like MXToolbox to verify your domain
📊 Low Open Rates?
- Improve subject lines: Make them compelling, personal, and under 50 characters
- Clean your list: Remove inactive subscribers (Pro feature)
- Optimize send time: Test different days and times (9-11 AM Tue-Thu works well)
- Segment your audience: Send targeted content (Pro feature)
🔧 Built-in Debug Tools (Starter & Pro)
Starter and Pro users have access to powerful debugging tools in the plugin:
- Cron Status Page: Go to CN Blog Mailer → Cron Status to see cron health, execution logs, and run tasks manually
- Schedule Debug: Enable 48-hour schedule debugging to log all scheduling decisions
- Open Tracking Debug: Enable tracking debug to troubleshoot analytics issues
- Email Queue Monitor: Real-time view of pending, sent, and failed emails
- Force Reschedule: Reset all cron schedules with one click
- Run Queue Now: Manually process pending emails immediately
As a paying customer, you have access to priority email support. Contact us at creativenoesis.com/support if you need help troubleshooting any issues.
Choose the Right Plan for You
Compare features across all three plans to find the perfect fit for your needs
| Feature | Free | Starter | Pro |
|---|---|---|---|
| Subscribers | Unlimited | Unlimited | Unlimited |
| Custom Email Campaigns | ✗ | ✓ | ✓ |
| Automated Digests | Basic | Basic | Advanced |
| Subscription Forms | ✓ | ✓ | ✓ |
| Double Opt-In | ✗ | ✓ | ✓ |
| Email Templates | 1 template | 3 templates | 5 templates + Custom Design |
| Import/Export (CSV) | ✗ | ✓ | ✓ |
| Custom Email Templates | ✗ | ✓ | ✓ |
| Smart Background Sending | ✗ | ✓ | ✓ |
| Basic Analytics | ✗ | ✓ | ✓ |
| Advanced Analytics | ✗ | ✗ | ✓ |
| Subscriber Tags & Segments | ✗ | ✗ | ✓ |
| Weekly Automated Reports | ✗ | ✗ | ✓ |
| Priority Support | ✗ |
STARTER - $69 (Lifetime, 1 site)
Custom emails, CSV Import/Export, Basic Analytics & Smart Queue.
Get StarterPRO - $149 (Lifetime, 5 sites)
Everything in Starter + Advanced Analytics, A/B Testing, Segmentation & Tags.
Get ProReady to Upgrade?
Choose Starter for custom emails and analytics or Pro for advanced segmentation and A/B testing.
Additional Resources
Documentation
Support
- Community Support Forum
- Contact Support (Starter & Pro customers)
- Frequently Asked Questions
Stay Updated
- Follow development on GitHub
- Subscribe to our newsletter for tips and updates