WP SMTP Config

WP SMTP Config Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 14,413 downloads
WP SMTP Config Icon

Try plugin: WP SMTP Config

We'll create fresh WordPress site with WP SMTP Config installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About WP SMTP Config

Configure an external SMTP server in your config file.

1


0


0


0


1

updated: 5 years ago
since: 12 years ago

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