![Postmark Postmark Logo](/cfoellmann/postmark-wordpress/raw/master/assets/images/postmark.png)
If you’re still sending email with default SMTP, you’re blind to delivery problems! Postmark for WordPress enables sites of any size to deliver and track WordPress notification emails reliably, with minimal setup time and zero maintenance.
If you don’t already have a Postmark account, you can get one in minutes, sign up at https://postmarkapp.com.
- Upload postmark directory to your /wp-content/plugins directory or install from plugin marketplace
- Activate plugin in WordPress admin
- In WordPress admin, go to Settings then Postmark. You will then want to insert your Postmark details. If you don’t already have a Postmark account, get one at http://postmarkapp.com.
- Verify sending by entering a recipient email address you have access to and pressing the “Send Test Email” button. Enable logging for troubleshooting and to check the send result.
- Once everything is verified as working, check Send emails using Postmark and Save, to override
wp_mail
to send using Postmark instead.
Postmark is a hosted service that expertly handles all delivery of transactional webapp and web site email. This includes welcome emails, password resets, comment notifications, and more. If you've ever installed WordPress and had issues with PHP's mail() function not working right, or your WordPress install sends comment notifications or password resets to spam, Postmark makes all of these problems vanish in seconds. Without Postmark, you may not even know you're having delivery problems. Find out in seconds by installing and configuring this plugin.
The Postmark for WordPress plugin overrides any usage of the wp_mail()
function. Because of this, if any 3rd party code or plugins send mail directly using the PHP mail function, or any other method, we cannot override it. Please contact the makers of any offending plugins and let them know that they should use wp_mail()
instead of unsupported mailing functions.
The Postmark service (and this plugin) are free to get started, for up to 100 emails a month. You can sign up at https://postmarkapp.com/. When you need to process more than 100 emails a month, Postmark offers monthly plans to fit your needs.
First, enable logging in Settings and check your send attempts for any errors returned by the Postmark API. These errors can let you know why the send attempts are failing. If you aren't seeing log entries for your send attempts, then the plugin or contact form generating the emails is likely not using wp_mail()
and not compatible with this plugin.
If you are still unsure how to proceed, just send an email to [email protected] or tweet @postmarkapp for help. Be sure to include as much detail as possible.
Because we've been in this business for many years. We’ve been running an email marketing service, Newsberry, for five years. Through trial and error we already know what it takes to manage a large volume of email. We handle things like whitelisting, ISP throttling, reverse DNS, feedback loops, content scanning, and delivery monitoring to ensure your emails get to the inbox.
Most importantly, a great product requires great support and even better education. Our team is spread out across six time zones to offer fast support on everything from using Postmark to best practices on content and user engagement. A solid infrastructure only goes so far, that’s why improving our customer’s sending practices helps achieve incredible results.
This plugin detects HTML by checking the headers sent by other WordPress plugins. If a "text/html" content type isn't set then this plugin won't send the HTML to Postmark to be sent out only the plain text version of the email.
Can I use the Postmark for WordPress plugin with Gravity Forms?
How do I send with Ninja Forms and Postmark for WordPress?
How do I send with Contact Form 7 and Postmark for WordPress?
Can I use the Postmark for WordPress plugin with Divi contact forms?
- Fixes no index error with track links check in wp_mail.
- Fixes call of non-global load_settings function during upgrade.
- Adds link tracking support.
- Fixes send test with HTML/open tracking option not being honored in sent test email.
- Fixes undefined index error.
- Adds Upgrade Notice
- Corrects logs deletion cron job unscheduling issue.
- Removes index on logs table.
- Corrects version mismatch in constructor.
- Adds a new logging feature that can be enabled to store logs for send attempts. Logs include Date, From address, To address, Subject, and Postmark API response. Logs are displayed in a Logs tab in the plugin setting once enabled.
- Switch loading of JS/CSS to use enqueue()
- Resolves issue when saving settings in UI.
- Falls attachment Content-Type back to 'application/octet-stream' when other methods fail.
- Update javascript to fix settings update issue.
- Added
postmark_error
andpostmark_response
actions to the plugin, to intercept API results after calling wp_mail. You can register callbacks for these usingadd_action
(more info here: https://developer.wordpress.org/reference/functions/add_action/)
- Interface cleanup
- Minor code restructuring
- Make the errors available in the PHP variable
Postmark_Mail::$LAST_ERROR
ifwp_mail()
returns false, examine this variable to find out what happened. - When doing a test send, if an error occurs, it will be printed in the settings page header.
- Fix case where 'From' header is specified as a literal string, instead of in an associative array.
- Allow the 'From' header to override the default sender.
- Don't send TextBody when the user has specified the 'Content-Type' header of 'text/html'
- Allow individual messages to opt-in to Track-Opens by including a header of 'X-PM-Track-Opens' and a value of
true
- Modernization of codebase.
- Support headers for cc, bcc, and reply-to
- Added open tracking support.
- Fix issue with new WordPress HTTP API Integration.
- New option to force emails to be sent as HTML. Previously just detected Content-Type.
- Now uses the WordPress HTTP API.
- Resolved error with handing arrays of recipients
- Arrays of recipients are now properly handled
- HTML emails and Text Emails are now handled by checking the headers of the emails sent, and sends via Postmark appropriately.
- Optional "Powered by Postmark" footer of sent emails. "Postmark solves your WordPress email problems. Send transactional email confidently using http://postmarkapp.com"
- Add license to README and PHP file
- First Public release.