Extension: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 以降 |
ダウンロード | |
|
|
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
関連項目
- Manual:$wgSMTP - Using the
$wgSMTP
configuration parameter with AWS SES. - Mediawiki AWS SES Mailer