![]() Release status: beta |
|
---|---|
Description | Allows MediaWiki to use the Mailgun API service to send emails |
Author(s) |
|
Latest version | 1.0 |
MediaWiki | >= 1.34.0 |
Database changes | No |
Composer | mediawiki/mailgun |
License | GNU General Public License 2.0 or later |
Download | Download extension Git [?]: |
Parameters
|
|
Hooks used
|
|
Quarterly downloads | 12 (Ranked 158th) |
Translate the Mailgun extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Mailgun extension allows MediaWiki to send emails through Mailgun API service.
Installation
- Download and place the file(s) in a directory called
Mailgun
in yourextensions/
folder. - Only when installing from Git, run Composer to install PHP dependencies, by issuing
composer install --no-dev
in the extension directory. (See task T173141 for potential complications.) - Add the following code at the bottom of your LocalSettings.php
wfLoadExtension( 'Mailgun' );
file: - Configure as required.
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration
You need to have an account on www.mailgun.com
and your custom domain verified with it to use Mailgun for sending/receiving mails. Instructions to do the same can be found in the Mailgun documentation.
Security warning: Please do not paste your Mailgun keys directly in your Mailgun/extension.json
Once you have your domain verified, you will get your Mailgun API key to mass send emails. You should configure your API key and domain in LocalSettings.php:
$wgMailgunAPIKey = "key-asdfasdfasdf";
$wgMailgunDomain = "example.in";
Test your settings
Go to Special:EmailUser
and send an email to your own address to verify the working of the mailer. You should be able to see logs of email sessions in your Mailgun logs.
See also
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.