Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

Socialveo SMTP

Descripción

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.

Instalación

  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’, ‘noreply@my-domain.com’); // Set From email
define(‘SVEO_SMTP_FROM_NAME’, ‘My Sitename’); // Set From name
define(‘SVEO_SMTP_REPLY_TO_MAIL’, ‘reply@my-domain.com’); // 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

FAQ

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’, ‘noreply@my-domain.com’); // Set From email
define(‘SVEO_SMTP_FROM_NAME’, ‘My Sitename’); // Set From name
define(‘SVEO_SMTP_REPLY_TO_MAIL’, ‘reply@my-domain.com’); // 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

Reseñas

No hay reseñas para este plugin.

Colaboradores y desarrolladores

«Socialveo SMTP» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce «Socialveo SMTP» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

[0.0.1] – 2017-11-20

  • First release