WordPress

From vwiki
Revision as of 09:06, 9 August 2012 by Sstrutt (talk | contribs) (Added Applications category)
Jump to navigation Jump to search

Configuration

Send Emails via SMTP Server

If you need to configure your WordPress install to use an SMTP server then there is no way to achieve this via the existing admin console (there are Plugins that do this though).

Out of the box WordPress will try to use PHP's mail function, which will either try to use sendmail (on Unix) or an external MTA (on Windows). To send emails via an external SMTP server use the procedure below.

Be aware that changes made may be overwritten by software upgrades, and line numbers etc will change.

Procedure below was created using WordPress v3.4.1, will update when neccessary for subsequent releases

  1. Update /wp-includes/pluggable.php to use SMTP
    1. Find the line $phpmailer->isMail();
      • In vi use /$phpmailer->isMail(); to find, should be around line 400
    2. Update it to $phpmailer->isSMTP();
    3. To update the From name in email update $from_name = at around line 320
    4. To update the From email address in email update $from_email = at around line 335
  2. Update /wp-includes/class-phpmailer.php to configure the SMTP server connection settings
    1. Find the line public $Host = ;, should be around line 200, and update with MTA hosts
      • EG public $Host = 'mail.domain.com;mail2.domain.com';
    2. If you need to use a secure connection set public $SMTPSecure to ssl or tls as appropriate
    3. If you need to authenticate with the server set the following...
      • public $SMTPAuth = true;
      • EG public $Username = 'blog-email-account';
      • EG public $Password = 'blog-email-ac-password';

It's a bit of a pain to test, but if you've got comment notifications turned on, create a comment that needs approval and see if you get an approval request.

The above was based on http://maisonbisson.com/blog/post/12939/using-wordpress-with-external-smtp-server/