
WordPress Plugin

WordPress Plugin
GNU GPL
Unlimited websites
$5.99
Save —
One-time purchase
Secure checkout · Instant access
★★★★★
4.8
Look, if you’re still trying to blast thousands of emails through your shared host’s default wp_mail(), you need an intervention. Your server IP is probably blacklisted to oblivion.
I recently had to salvage a client’s setup where their marketing team was complaining about a 10% open rate. The culprit? Everything was landing in spam. To fix this, I ripped out their bloated SMTP plugin and hooked up the Newsletter Mailgun Addon.
Here’s my unfiltered take after deploying this on a heavy production site.
The Newsletter Mailgun Addon does exactly one thing, and thankfully, it doesn’t screw it up. It routes the core Newsletter plugin’s outgoing queue directly through Mailgun’s API instead of relying on standard SMTP.
Why does this matter? Because SMTP is slow as hell. When you push 50,000 emails, standard SMTP connections will choke your PHP workers and spike CPU usage. API routing is infinitely faster.
Setup is mostly painless. You go to Newsletter -> Settings -> Delivery, select Mailgun, and dump your API key and sending domain in there.
Here’s where my blood pressure started rising. My client uses Mailgun’s EU region. If you just paste the API key, the addon defaults to the US endpoint (api.mailgun.net).
I opened the Mailgun dashboard and saw zero traffic. Checked my server logs, nothing. I had to dig into the plugin files. If you look inside newsletter-mailgun/class-mailgun.php, you’ll see how it constructs the API call. Thankfully, they recently added a toggle for the EU region in the UI, but older versions required a manual filter hook to rewrite the base URL.
Also, watch your SSL certificates. I ran into a cURL error 60 (SSL certificate problem) because the server’s CA bundle was outdated. I had to temporarily throw add_filter('https_ssl_verify', '__return_false'); into my child theme’s functions.php just to test the connection while server support updated the certs. Don’t leave that in production, obviously.
The biggest selling point of the Newsletter Mailgun Addon is automatic bounce processing. If an email hard-bounces, Mailgun pings your site, and the plugin changes the subscriber status to “Bounced”.
Sounds great, right? Until your security setup blocks it.
I spent two hours debugging why bounces weren’t registering. DevTools won’t help you here since it’s server-to-server. I had to check Mailgun’s webhook logs and saw straight 403 Forbidden errors. Wordfence and Cloudflare were blocking Mailgun’s POST requests to the /?na=mailgun endpoint because it looked like a bot attack.
The Fix: I had to manually whitelist Mailgun’s IP ranges in Cloudflare’s WAF rules and exclude that specific query string from Wordfence’s brute-force protection.
I originally grabbed a GPL version of this to test on my local staging environment before making the client buy anything. Honestly, it’s a lifesaver. The GPL release is fully working with unlimited website usage.
There are no obnoxious admin notices screaming at you to input a license key just to access the settings. It just works. You do have to handle manual updates, though. I usually just overwrite the folder via SFTP when a new version drops. No big deal.
Not really. It offloads the heavy lifting to the API. But if you have a massive queue, make sure you trigger WP Cron via a real server-side cron job (cPanel/CLI) every 5 minutes, not the default AJAX-based wp-cron.php.
Check your DNS records. If you enabled click/open tracking in Mailgun, you need a CNAME record pointing email.yourdomain.com to Mailgun. If that’s missing, the tracking pixels will 404. Check the Network tab in DevTools on an opened email to verify the pixel URL.
No. The plugin settings are global. It binds one domain to the entire Newsletter installation. If you need multi-domain routing, you’ll have to write a custom integration hooking into newsletter_message_send.
All products we provide come only from official sources and verified developers. To confirm their integrity and safety, the archive has been scanned for viruses and malware. You can review the scan results at any time by clicking the button below.
View in VirusTotalYou can use any product from our store on as many websites as you like.
Single purchase includes download access for 72 hours. Future version downloads require repurchase or an active membership.
Manual updates are available to customers with active access.
Yes, we do. In most cases, you can expect a reply within 24–72 business hours. For simpler issues, we’re often able to respond much sooner.
You can contact us via live chat or open a support ticket directly from the product page — whichever is more convenient for you.
No, there are no limits. We don’t believe in restricting downloads. If you need to download a product multiple times, that’s absolutely fine.
We use professional, high‑performance storage systems to ensure downloads are fast, stable, and hassle‑free.
No, license keys are not included or required. Because all items are distributed under the GNU General Public License (GPL), a license key is not necessary to access the software’s functionality.
All products you receive are fully authentic. The files are provided fully functional and optimized for immediate installation, allowing you to use them seamlessly right out of the box without any restrictions.
Yes — 100%. All products contain the original code and are legally redistributed under the GNU GPL v2/v3 license.
The main difference compared to purchasing directly from the original author is that we don’t offer premium author services, such as custom development or one‑on‑one technical support. Additionally, since the software is fully GPL-compliant, it is provided ready for use and can be freely installed on an unlimited number of websites.
Yes, we stand behind our products. If you encounter an issue that cannot be resolved or a technical problem without a workable solution, we’ll do our best to help — and if necessary, issue a full refund.
Please note that refunds are not available if the product works as described but simply does not meet personal expectations. We’ve also encountered cases where refund requests were made while the product was still in use, which we cannot allow.
Our approach is simple: fairness and transparency. If you ever have a concern, just reach out — we’re always open to finding a reasonable solution that works for both sides.

Reviews
There are no reviews yet.