Description
Magic API Email replaces the default WordPress email system (wp_mail()) with a direct API connection to your chosen transactional email provider. No SMTP configuration needed — just paste your API key and you’re ready to go.
Supported Providers:
- Resend — Modern email API for developers
- Mailgun — Reliable transactional email
- Postmark — Fast, deliverable transactional email
- Mailtrap — Email delivery platform with sandbox testing
- Plunk — Email API for developers
Features:
- Per-provider settings — API key, From Email, and From Name are stored independently for each provider. Switching providers never overwrites another provider’s credentials.
- Test email — Send a test email directly from the settings page to verify your configuration.
- Secure — All inputs are sanitized and validated. API keys are stored as password fields.
- Lightweight — No dependencies, no bloat. Three focused class files.
- Developer-friendly — Falls back to default
wp_mail()if no API key is configured.
External services
This plugin acts as a bridge between your WordPress site and your chosen transactional email provider. By design, instead of sending emails via standard wp_mail(), this plugin sends the content of your outgoing emails via an HTTPS API request to the provider you select in the settings.
Depending on your configuration, the plugin connects to one of the following APIs:
* Resend (api.resend.com) – Terms of Service | Privacy Policy
* Mailgun (api.mailgun.net) – Terms of Service | Privacy Policy
* Postmark (api.postmarkapp.com) – Terms of Service | Privacy Policy
* Mailtrap (api.mailtrap.io) – Terms of Service | Privacy Policy
* Plunk (api.useplunk.com) – Terms of Service | Privacy Policy
What data is sent and when?
When any plugin or WordPress core feature attempts to send an email (e.g. password resets, contact form submissions, order confirmations), the data (including the recipient’s email address, sender information, email subject, and email body content) is transmitted securely to your configured provider in order to deliver the email. No data is sent if you have not configured an API key for a provider.
Installation
- Upload the
magic-api-emailfolder to the/wp-content/plugins/directory, or install the plugin through the WordPress Plugins screen directly. - Activate the plugin through the Plugins screen in WordPress.
- Navigate to Magic API Email in the WordPress admin sidebar.
- Select your email provider, enter your API key, From Email, and From Name.
- Click Save Settings.
- Use the Send Test Email section to verify everything is working.
FAQ
-
Which providers are supported?
-
Resend, Mailgun, Postmark, and Mailtrap are currently supported.
-
Do I need to configure SMTP?
-
No. Magic API Email sends emails directly through each provider’s REST API, so no SMTP setup is required.
-
Will switching providers erase my other provider’s settings?
-
No. Each provider’s API key, From Email, and From Name are stored separately. You can switch between providers freely without losing any credentials.
-
Where do I get an API key?
-
- Resend: resend.com — Create an account and generate an API key in the dashboard.
- Mailgun: mailgun.com — Create an account, add a sending domain, and copy the API key.
- Postmark: postmarkapp.com — Create a Server and copy the Server API Token.
- Mailtrap: mailtrap.io — Create an account and generate a sending API token.
-
What happens if I don’t configure the plugin?
-
If the API key or From Email is empty, the plugin falls back to WordPress’s default email handling — no emails are lost.
-
Does this plugin support HTML emails?
-
Yes. If WordPress or another plugin sends an email with a
Content-Type: text/htmlheader, Magic API Email will send it as HTML to the provider. -
Where are errors logged?
-
API errors are written to the WordPress debug log (
wp-content/debug.log) with the prefix[Magic API Email]. EnableWP_DEBUG_LOGinwp-config.phpto capture them.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Magic API Email” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Magic API Email” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.1.0
- Feature: Email logging — every outgoing email is now recorded in a custom database table with recipient, subject, provider, status, and error details.
- Feature: Logs tab — browse all email logs with a sortable, paginated WP_List_Table on the plugin settings page.
- Feature: Statistics tab — at-a-glance dashboard showing total emails sent, success/failure counts, and per-provider usage breakdown.
- Enhancement: Admin settings page refactored into a native WordPress tabbed interface (Settings, Logs, Statistics).
- Enhancement: Sender class now captures and stores error messages for failed API requests.
1.0.12
- Fix: Versioning conflict in the previous deployment package.
1.0.11
- Feature: Added plugin banner and screenshots to the repository.
- Tweak: Updated plugin icon.
- Tweak: Bumped version to 1.0.11.
1.0.10
- Feature: Added plugin icon.
- Tweak: Version bump for assets update.
1.0.9
- Fix: Removed unnecessary
mu-pluginsdirectory. - Tweak: Updated readme file for better documentation.
1.0.8
- Fixed menu position to comply with WordPress.org guidelines (moved to Settings page).
- Added explicit documentation for external API services in README.
- Added
magicwpioto contributors to verify plugin ownership.
1.0.7
- Added Plunk provider support.
1.0.6
- Fixed missing translators comment placement in test email handler.
- Replaced error_log() with wp_trigger_error() for production-safe logging.
- Removed discouraged load_plugin_textdomain() call (auto-loaded by WordPress.org).
- Added wp_unslash() before sanitize_email() on POST data.
- Deleted .DS_Store hidden file.
1.0.5
- Renamed plugin to Magic API Email.
- Added Author URI (https://magicwp.io).
- Added Text Domain and Domain Path headers for WordPress.org compliance.
- Added version and copyright footer to the settings page.
- Improved translators comments throughout for i18n compliance.
1.0.4
- Added Postmark provider support.
1.0.3
- Added Mailtrap provider support.
1.0.2
- Per-provider settings storage — API key, From Email, and From Name are now stored independently per provider.
- Fixed “Request failed” error when sending test emails after provider switch.
- Fixed fields being cleared when switching providers.
- Fixed “Settings saved.” notice not appearing on top-level menu pages.
1.0.1
- Added Mailgun provider support.
- Fixed duplicate “Settings saved.” notice.
- Moved plugin to top-level admin menu with email icon.
1.0.0
- Initial release with Resend provider support.
- Settings page with API Key, From Email, and From Name.
- Test email functionality.
wp_mail()interception viapre_wp_mailfilter.


