이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Socialveo SMTP

설명

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.

설치

  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

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“Socialveo SMTP”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Socialveo SMTP”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

[0.0.1] – 2017-11-20

  • First release