bbp_get_bcc_chunk_limit

bbp_get_bcc_chunk_limit

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_bcc_chunk_limit') is found 1 times:

  • /includes/common/functions.php line 1444
     */
    function bbp_chunk_emails( $args = array() ) {
    
    	// Get the maximum number of Bcc's per chunk
    	$max_num = apply_filters( 'bbp_get_bcc_chunk_limit', 40, $args );
    
    	// Look for "bcc: " in a case-insensitive way, and split into 2 sets
    	$match       = '/^bcc: (\w+)/i';
    	$old_headers = preg_grep( $match, $args['headers'], PREG_GREP_INVERT );
    	$bcc_headers = preg_grep( $match, $args['headers'] );