Linux 软件免费装

WP Mail SES

开发者 bashaus
更新时间 2018年1月4日 04:59
PHP版本: 3.0.1 及以上
WordPress版本: 4.9.1
版权: MIT
版权网址: 版权信息

标签

mail wp_mail ses

下载

详情介绍:

Uses Amazon Web Services (AWS) Simple Email Service (SES) to send emails. Based on the original WP SES project by Sylvain Deaure. Main differences:

安装:

Follow these instructions: 1. Amazon confirmation and approval You will need to setup Simple Email Service (SES) on your Amazon Web Services account before you can use this plugin. For more information, read Amazon's documentation on how to setup SES 2. Update configuration Update your wp-config.php file to include the required constants: /* * Include your AWS keys. * * A safe approach is to store your key and secret in environment * variables. This way, your credentials are not hard coded in version * control. / define( 'WP_MAIL_SES_ACCESS_KEY_ID', getenv( 'WP_MAIL_SES_ACCESS_KEY_ID' ) ); define( 'WP_MAIL_SES_SECRET_ACCESS_KEY', getenv( 'WP_MAIL_SES_SECRET_ACCESS_KEY' ) ); /* * Define the endpoint for your emails to be sent. Endpoints include: * * email.us-east-1.amazonaws.com * email.us-west-2.amazonaws.com * email.eu-west-1.amazonaws.com / define( 'WP_MAIL_SES_ENDPOINT', 'email.eu-west-1.amazonaws.com' ); Optional extra configuration: /* * Define the composer information for your email (who the email is * sent from). The email address must be approved in your AWS console * in the specified region. * * This email address is used if a composer is not already defined by * the email. / define( 'WP_MAIL_SES_COMPOSER_NAME', 'Company Name' ); define( 'WP_MAIL_SES_COMPOSER_EMAIL', 'confirmed@example.com' ); /* * Disable accessing of statistics from the Dashboard. * This can help if you're hitting the API too frequently. / define( 'WP_MAIL_SES_HIDE_STATISTICS', true ); 3. Install plugin Copy this folder wp-mail-ses to your /wp-content/plugins/ directory. 4. Activate plugin Go to your WordPress Administration and activate the WP Mail SES plugin. 5. Send a test message Go to: Admin » Settings » WP Mail SES

升级注意事项:

No notices

常见问题:

Why isn't my email sending?

There are a number of reasons that an email might not be sent via SES, here is a quick checklist to ensure that the plugin has been setup properly: Have you:

  • Defined WP_MAIL_SES_ACCESS_KEY_ID, WP_MAIL_SES_SECRET_ACCESS_KEY and WP_MAIL_SES_ENDPOINT in wp-config.php?
  • Confirmed that you own a domain name in the Amazon SES console?
  • Confirmed an email address in the Amazon SES console?
  • Requested your service limit to be increased ?
  • Tried defining WP_MAIL_SES_COMPOSER_EMAIL in wp-config.php with your verified email address?

I can send emails to myself, but not to others

In order to send emails to the public, you need to move out of the Amazon SES Sandbox and into the production account. Read the documentation on Amazon.

Got another question?

You can post your question on GitHub.

更新日志:

0.0.4 0.0.3 0.0.2 0.0.1