Skip to content

Instantly share code, notes, and snippets.

@dnaber-de
Last active May 24, 2016 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnaber-de/550520b5cdaf13987281bb159361b56f to your computer and use it in GitHub Desktop.
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.
<?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