plugin-icon

WP Mail SES

Uses Amazon Web Services (AWS) Simple Email Service (SES) to send emails in WordPress.
Puanlar
5
Son güncellenme
January 3, 2018
Sürüm
0.0.4
Aktif kurulumlar
10

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

  • Does not store credentials in the database
  • Convention over configuration
  • Removed any functionality which can be done via AWS Console
  • Open Source and version controlled via GitHub

Usage

View statistics

Go to: Admin » Dashboard » SES Statistics

Send test message

Go to: Admin » Settings » WP Mail SES

Hooks/Filters

wp_mail_ses_sent_email - This function is called once an email has been sent

to SES and provides two parameters:

  • $message_id (string or null) – The MessageId as provided by SES if the request was successful, otherwise null.
  • $mail_data (array) – A hash map containing the information used to send the email. Keys include: to, subject, message, headers, attachments

Example:

add_filter( 'wp_mail_ses_sent_email', function ( $message_id, $mail_data ) { if ( is_null( $message_id ) ) { echo "Sending failed"; } else { echo "Sending successful"; } print_r( $mail_data ); } );
ÜcretsizCreator paketinde
Yükleme işlemini tamamlayarak, WordPress.com'un Hizmet Şartları ile Üçüncü Taraf Eklenti Şartlarını kabul etmiş olursunuz.
Aktif kurulumlar
10
Test edilen son sürüm
4.9.26
Bu eklenti, WordPress tarafından barındırılan kurulumunuzda kullanılmak üzere indirilebilir.