Extension:SesMailer

This page is a translated version of the page Extension:SesMailer and the translation is 38% complete.
MediaWiki 拡張機能マニュアル
SesMailer
リリースの状態: 保守されていない
実装 フック
説明 Switches the wiki to use Amazon SES API to send emails
作者 Janos Ronkay (Hangya293トーク)
最新バージョン 1.0 (2016-03-14)
MediaWiki 1.25+
PHP 5.5+
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード

  • $wgSesMailerRegion
  • $wgSesMailerKey
  • $wgSesMailerSecret

The SesMailer extension allows MediaWiki to send emails through Amazon SES API service.

インストール

  • Add AWS SDK with composer by adding the following to the require section of your "composer.local.json" file:
    "aws/aws-sdk-php": "~3",
    
  • ダウンロードして、ファイルをextensions/フォルダー内のSesMailerという名前のディレクトリ内に配置します。
  • 以下のコードを LocalSettings.php の末尾に追加します:
    wfLoadExtension( 'SesMailer' );
    
  •   完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。

構成パラメーター

$wgSesMailerRegion = "eu-west-1"; // AWS Region
$wgSesMailerKey = "xxx"; // Access Key ID for IAM user with ses:SendEmail permission
$wgSesMailerSecret = "xxx"; // Secret Access Key

関連項目