Last active
May 24, 2016 08:09
-
-
Save dnaber-de/550520b5cdaf13987281bb159361b56f to your computer and use it in GitHub Desktop.
Disable mail queue of Informer (WP Plugin) to send all emails at once.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Informer – disable mail queue | |
* Description: Deactivates the queueing of mails in <em>Informer</em> | |
* Author: Inpsyde GmbH | |
* Author URI: http://inpsyde.com | |
* License: MIT | |
* Plugin URI: https://gist.github.com/dnaber-de/550520b5cdaf13987281bb159361b56f | |
*/ | |
namespace Informer\DisableQueue; | |
add_filter( 'iac_mail_to_chunking', '__return_false' ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment