Extension:SesMailer/pl
![]() | To rozszerzenie nie jest aktualnie aktywnie rozwijane! Pomimo, że może nadal działać, jakiekolwiek zgłoszenia błędów lub propozycji funkcji będą najprawdopodobniej ignorowane. |
![]() Status wydania: niewspierane |
|
---|---|
Realizacja | Hak |
Opis | Switches the wiki to use Amazon SES API to send emails |
Autor(zy) | Janos Ronkay (Hangya293dyskusja) |
Ostatnia wersja | 1.0 (2016-03-14) |
MediaWiki | 1.25+ |
PHP | 5.5+ |
Licencja | GNU General Public License 2.0 or later |
Pobieranie | GitHub: Uwaga: |
|
|
The SesMailer extension allows MediaWiki to send emails through Amazon SES API service.
Installation
- Add AWS SDK with composer by adding the following to the require section of your "composer.local.json" file:
"aws/aws-sdk-php": "~3",
- Download i umieść plik(i) w katalogu o nazwie
SesMailer
w swoim kataloguextensions/
. - Dodaj poniższy kod na dole swojego pliku
LocalSettings.php
:wfLoadExtension( 'SesMailer' );
Zrobione – Przejdź do Special:Version na swojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Configuration parameters
$wgSesMailerRegion = "eu-west-1"; // AWS Region
$wgSesMailerKey = "xxx"; // Access Key ID for IAM user with ses:SendEmail permission
$wgSesMailerSecret = "xxx"; // Secret Access Key
Zobacz też
- Manual:$wgSMTP#AWS_SES - Using the
$wgSMTP
configuration parameter with AWS SES. - Mediawiki AWS SES Mailer