Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, SES, Zoho, + mor...
Configure an external SMTP server in your config file.
WP SMTP Config is a WordPress plugin that allows you to configure your WordPress site to use an SMTP server for sending emails instead of the default PHP mail() function. The configuration is done directly in the wp-config.php file, which keeps the settings secure from other admins on the blog.
This plugin is suitable for users who need to set up SMTP for their WordPress or WordPress MU installations. It requires specific parameters like host, port, encryption type, username, password, and email addresses for sending and replying.
Best for: This plugin is best for WordPress users needing secure email sending capabilities.
What it does well
Where it falls short
WP SMTP Config provides a straightforward solution for SMTP configuration but may lack updates and extensive features.
pCoLaSD's own description of WP SMTP Config, lightly tidied.
This plugin configures WordPress and WordPress MU to use a SMTP server when sending emails instead of the default PHP mail() function.
You will configure your SMTP settings in your wp-config.php file instead of the settings page.
The advantage is that no admin of your blog can read the settings.
And you only have to place your settings once in cases of a WordPress MU installation.
A sample configuration:
/**
* WordPress SMTP server
*/
define('WP_SMTP_HOST', 'mail.example.com');
define('WP_SMTP_PORT', 25); // obligatory - default: 25
define('WP_SMTP_ENCRYPTION', 'tls'); // obligatory ('tls' or 'ssl') - default: no encryption
define('WP_SMTP_USER', 'username'); // obligatory - default: no user
define('WP_SMTP_PASSWORD', 'password'); // obligatory - default: no password
define('WP_SMTP_FROM', 'John Doe <john.doe@example.com>'); // obligatory - default: no custom from address
define('WP_SMTP_REPLYTO', 'Jane Doe <jane.doe@example.com>'); // obligatory - default: no custom reply to address
Other plugins for email deliverability.
Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, SES, Zoho, + mor...
Free WP Mail SMTP plugin - fix WordPress email deliverability with Gmail, Amazon SES, SendGrid, Mailgun, Cloud...
Make SMTP email sending and delivery easy. Configure Gmail SMTP, Outlook, Brevo, SendGrid, Mailgun, SendLayer...
Send emails from your WordPress site using your preferred SMTP provider like Gmail, Outlook, AWS, Zoho, SMTP.c...
Improve WordPress email deliverability. Connect Gmail SMTP, Microsoft 365, Brevo, SendGrid, Mailgun, Zoho, Ama...
Check & Log email allows you to test if your website is correctly sending emails . Overriding of email hea...