plugin-icon

SES for WordPress

Use Amazon SES to send emails with embedded images and arbitrary headers.
評価機能
最終更新日時
January 9, 2013
バージョン
0.1

SES for WordPress

Introduction

This plugin provides support for AWS’s Simple Email Service for your WP site. It supports arbitrary custom headers and handles image embedding for you. It sends HTML messages with an automatically-generated plain-text counterpart.

By default, it overrides the native wp_mail function, so all you need to do is configure your AWS Keys and sender in Settings > SES4WP Options.

Components

  1. PEAR Mime_mail to create the message
  2. Jevon Wright’s html2text for the plain-text part
  3. AWS SDK v1.5

Embedding images

Before your call to wp_mail(), call ses4wp_embed_image with an image handle and the path to your image. It will return a content_id for you to use in your src attribute.

Paths should be given relative to your webserver root. So for instance, to embed wp-content/themes/twentyeleven/images/wordpress.png, you would omit the slash at the beginning.

eg

$content_id = ses4wp_embed_image( 'my_image', 'wp-content/path/to/image.jpg' ); $mail_body = "This is an image. <img src='cid:$content_id' />"; wp_mail( 'bob@example.com', 'My Subject', $mail_body );

The image will be attached to the email and delivered inline.

無料Creator プランを利用中
インストールすることで、WordPress.com の利用規約サードパーティ製プラグインの規約に同意したとみなされます。
最大テスト回数
3.5.2
このプラグインをダウンロードして、インストール型 WordPress のインストールに使用できます。