Hi, I tried installing this but it's complaining that "extension.json" is not in the SwiftMailer extension folder, which is true. Am I missing something?
Topic on Extension talk:SwiftMailer
wfLoadExtension( 'SwiftMailer' ); in LocalSettings.php wont work, but if you add
require_once "$IP/extensions/SwiftMailer/SwiftMailer.php";
instead, it should work.
In the current Download the program SwiftMailer.php appears to be missing (this causing a 500 error if instructions followed).
Is the program missing from the package, or do instructions need updating?
We dropped support for that inclusion in https://github.com/wikimedia/mediawiki-extensions-SwiftMailer/commit/a92cc5ce9c004493a600ed857e975bf6a1a9cd74
Now, you have to add wfLoadExtension( 'SwiftMailer' );
in your LocalSettings.php
to use the extension.
Thank you!