Plugin info

Total downloads: 793
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 11/23/2017 (2960 days ago)
Added to WordPress: 11/23/2017 (8 years old)
Minimum WordPress version: 2.7
Tested up to WordPress version: 4.9.26
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2960 days ago

20/100

Is Socialveo SMTP abandoned?

Possibly abandoned (last update 2960 days ago).

Compatibility

Requires WordPress: 2.7
Tested up to: 4.9.26
Requires PHP: f

Languages

Similar & Alternatives

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

No similar plugins found yet.

Description

Socialveo SMTP allows you to configure and send all outgoing emails via a SMTP server.

You can set the following options:

  • Set the from name and email address for outgoing email
  • Set the reply to email address
  • Set an SMTP host
  • Set an SMTP port
  • Set SSL / TLS encryption
  • Set to use SMTP authentication
  • Set an SMTP username and password

Works with any email sending service that offers SMTP.

Why use SMTP?

This plugin will prevent your emails from going into the junk/spam folder of the recipients.
Email sent by WordPress use PHP mail() function, and often the email go in the spam folder or get completely rejected by popular email providers.
SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails.
This plugin helps you use proper authentication which increases email deliverability.

Why use this SMTP plugin?

There are many WP plugins for SMTP, but this one aim to be simple by using lightweight code (single file less than 4KB), without storing anything on database, but doing configuration only via wp-config.php. Also there is not complete override of wp_mail() function like other plugins, but it’s used only hook for add additional functionality; this allow easy upgrade to future version of WP.

Credits

It is maintained by the team behind Socialveo.

What’s Next

Add HTML email templates to all wordpress emails.

Installation

  1. Install plugin, see instructions on how to install a WordPress plugin.
  2. Activate
  3. Open your wp-config.php and add below setting:

define(‘SVEO_SMTP_ENABLE’, true); // Enable/disable SMTP
define(‘SVEO_SMTP_FROM_MAIL’, ‘[email protected]’); // Set From email
define(‘SVEO_SMTP_FROM_NAME’, ‘My Sitename’); // Set From name
define(‘SVEO_SMTP_REPLY_TO_MAIL’, ‘[email protected]’); // Optionally set different reply to
define(‘SVEO_SMTP_REPLY_TO_NAME’, ‘My Sitename’); // Optionally set different reply to
define(‘SVEO_SMTP_HOST’, ‘localhost’); // The SMTP mail host
define(‘SVEO_SMTP_PORT’, 25); // The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise
define(‘SVEO_SMTP_ENCRYPTION’, ”); // ‘ssl’, ‘tls’ or ”
define(‘SVEO_SMTP_AUTH’, true); // Enable/disable SMTP authentication
define(‘SVEO_SMTP_USER’, ‘username’); // SMTP authentication username – used when SVEO_SMTP_AUTH is true
define(‘SVEO_SMTP_PASS’, ‘password’); // SMTP authentication password – used when SVEO_SMTP_AUTH is true

Frequently Asked Questions

Installation Instructions

  1. Install plugin, see instructions on how to install a WordPress plugin.
  2. Activate
  3. Open your wp-config.php and add below setting:

define(‘SVEO_SMTP_ENABLE’, true); // Enable/disable SMTP
define(‘SVEO_SMTP_FROM_MAIL’, ‘[email protected]’); // Set From email
define(‘SVEO_SMTP_FROM_NAME’, ‘My Sitename’); // Set From name
define(‘SVEO_SMTP_REPLY_TO_MAIL’, ‘[email protected]’); // Optionally set different reply to
define(‘SVEO_SMTP_REPLY_TO_NAME’, ‘My Sitename’); // Optionally set different reply to
define(‘SVEO_SMTP_HOST’, ‘localhost’); // The SMTP mail host
define(‘SVEO_SMTP_PORT’, 25); // The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise
define(‘SVEO_SMTP_ENCRYPTION’, ”); // ‘ssl’, ‘tls’ or ”
define(‘SVEO_SMTP_AUTH’, true); // Enable/disable SMTP authentication
define(‘SVEO_SMTP_USER’, ‘username’); // SMTP authentication username – used when SVEO_SMTP_AUTH is true
define(‘SVEO_SMTP_PASS’, ‘password’); // SMTP authentication password – used when SVEO_SMTP_AUTH is true

My plugin still sends mail via the mail() function

If other plugins you’re using are not coded to use the wp_mail() function but instead call PHP’s mail() function directly, they will bypass the settings of this plugin.

More questions?

You can get in touch with us via: github.com/socialveo/socialveo-wp/issues

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

[0.0.1] – 2017-11-20

  • First release