Plugin info

Total downloads: 15,506
Active installs: 300
Total reviews: 2
Average rating: 3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 11/12/2018 (2605 days ago)
Added to WordPress: 12/19/2011 (14 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 4.9.28
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2605 days ago • 2 reviews

22/100

Is WP SMTP Config abandoned?

Possibly abandoned (last update 2605 days ago).

Compatibility

Requires WordPress: 3.0
Tested up to: 4.9.28
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

MailBase
Rating 0.0/5 (0 reviews)Active installs 0
SMTP Mailer
Rating 4.5/5 (65 reviews)Active installs 70,000
SMTP2GO for WordPress – Email Made Easy
Rating 5.0/5 (64 reviews)Active installs 20,000
Zoho Mail for WordPress
Rating 3.8/5 (41 reviews)Active installs 20,000
Stop WP Emails Going to Spam
Rating 4.8/5 (51 reviews)Active installs 10,000

Description

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 '); // obligatory - default: no custom from address
define('WP_SMTP_REPLYTO',    'Jane Doe '); // obligatory - default: no custom reply to address

Installation

  1. Upload wp-smtp-config.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Place the SMTP details (see Description) in your wp-config.php file above the line /* That’s all, stop editing! Happy blogging. */
  4. Test your settings (Settings -> SMTP)

Frequently Asked Questions

Where is my SMTP settings page?

The configuration of the SMTP server credentials will be placed in your wp-config.php file only.
You can test your configuration in Settings -> SMTP Test.
If you are running a MU installation you will find this settings page for SMTP Test in your network settings.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.2.0

  • Fixed bug settings page not showing for network admin
  • Added config for custom reply to address
  • Added some security validations

1.1.1

  • Fixed bug with port configuration

1.1.0

  • Added config for custom from address

1.0

  • Initial release