add_filter( 'mepr-wp-mail-recipients', function( $recipients, $subject, $message, $headers ) { if ( strpos( $subject, 'Password Reset') !== false ) { $recipients = array(); // Remove all recipients. } return $recipients; }, 11, 4 );
Last updated 5 years ago
Was this helpful?