這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

MBC SMTP Flex

描述

Use SMTP with authentication to deliver messages from WordPress. Intercepts wp_mail function to allow you to define the server, port, connection security and credentials.

Designed initially as a replacement for the wp_mail function, this plugin uses the core WordPress mail functions and extends only the settings needed to allow connection to third-party mailing systems that require authentication and have sender and recipient restrictions.

Particularly good with Amazon SES where there are tight restrictions for sender lists and in sandbox mode only validated addresses may receive messages.

You can also simply use this to force sender and receivers for any messages from WordPress as well as set the default name in messages originating from your site.

Features:

  • Flexible configuration works with basically any mail service and protocol
  • Test function will allow you to diagnose specific errors in the email transmission
  • Able to handle Amazon Sandbox restrictions by overriding the recipient and sending only to an authorized address
  • Debug mode to capture transmission logs from phpmailer

安裝

  1. Download and unzip this plugin
  2. Upload the \”mbs-smtp-flex\” folder to your site\’s /wp-content/plugins/ directory
  3. Activate the plugin through the \’Plugins\’ menu in WordPress
  4. Under WP Admin Settings menu, select MBC SMTP Settings and enter server details
  5. Send a test message, confirm delivery and Activate to allow the plugin to extend wp_mail

常見問題

How to I fix a connection failure problem?

If the plugin is unable to connect to your server, ensure the following:

  • Ensure your server’s outbound ports allow traffic over your SMTP port
  • Try to ping the SMTP host directly from your server if you have SSH available
  • Consider a CNAME wrapper to the host if your hosting company is blocking that domain
  • Check whitelist/blacklist options with SMTP server host and whitelist your server IP if possible
  • Ensure OpenSSL is available on the server (OPENSSL_VERSION_TEXT) if you are using ssl or tls for connection security
How to I configure this for Amazon SES?

To configure the plugin for Amazon Simple Email Service:

  • Setup your domain with Amazon SES and ensure the DNS settings are entered to validate the domain (we recommend using Route 53 to simplify the process)
  • If you are new to Amazon SES, you need to force both the sender and recipient while in sandbox mode to a verified address
  • In order to get out of sandbox mode, you need to request a quota limit change, with the request to allow to valid recipients. Please read this article for more information: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/request-production-access.html
  • For TLS connections, use port 587 and for SSL use port 465
  • When you are out of the sandbox mode, you can deselect the force recipient option and test to an arbitrary email address

評價

There are no reviews for this plugin.

貢獻者及開發者

“MBC SMTP Flex” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 MBC SMTP Flex 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

0.5

  • Initial release with manipulation of headers and phpmailer settings.