>
Download This Plugin | |
Download Elegant Themes | |
Name | WP SMTP Config |
Version | 1.0 |
Author | Daniel Schröder |
Rating | 0 |
Last updated | 2011-12-19 03:43:00 |
Downloads |
6463
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP SMTP Config plugin added 13 bytes of resources to the Home page and 16 bytes of resources to the sample Post page.
WP SMTP Config plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WP SMTP Config plugin ads no tables to your Wordpress blog database.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