Sending Emails from Wordpress using SMTP

Install the plugin WP Mail SMTP

This plugin reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page that allows you to specify various options.

You can set the following options:
* Specify the from name and email address for outgoing email.
* Choose to send mail by SMTP or PHP's mail() function.
* Specify an SMTP host (defaults to localhost).
* Specify an SMTP port (defaults to 25).
* Choose SSL / TLS encryption (not the same as STARTTLS).
* Choose to use SMTP authentication or not (defaults to not).
* Specify an SMTP username and password

For more details visit http://wordpress.org/extend/plugins/wp-mail-smtp/

  • 3 Users Found This Useful
Was this answer helpful?

Related Articles

Sending Emails from PHP (mail function)

Mail sending from PHP mail function is now restricted to local email address only. you need to...

Sending Emails from ASP web page

Use the following code to send emails from asp web pages   <% Const cdoSendUsingPickup = 1...

Sending Emails from ASP through Gmail Email Account

Use the following code for sending emails from asp through your gmail account.   <% Const...