SendGrid is an extension that allows MediaWiki to send emails through SendGrid API service.
- Author: Derick Alangi
- Current release: 4.0
- MediaWiki: >=1.40.0
- PHP: 7.0+
- License: GNU GPL-2+
- Make sure you have a MediaWiki environment setup properly.
- Download the SendGrid extension.
- Place the extension in
extensions/
folder of your MediaWiki project. - Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'SendGrid' );
For MediaWiki version 1.24 or earlier:
- Add the following code (instead) at the bottom of your LocalSettings.php:
require_once "$IP/extensions/SendGrid/SendGrid.php";
Note: You will have to run composer update in extensions/SendGrid/
folder so that composer can pick up the required SendGrid dependencies for the extension to run smoothly.
Please refer to https://phabricator.wikimedia.org/tag/mediawiki-extensions-sendgrid/ for tasks on which you can contribute to.
Go to the extension's page on MediaWiki for further read.
SendGrid is licensed under the terms of the GNU General Public License 2.0 or later.