jetpack_account_protection_send_auth_email

jetpack_account_protection_send_auth_email

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.15.9

apply_filters('jetpack_account_protection_send_auth_email') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-account-protection/src/class-email-service.php line 60
    		 * @param int    $user_id  The user ID.
    		 * @param string $auth_code The authentication code.
    		 * @param int    $blog_id  The blog ID, or false if not available.
    		 */
    		$handled = apply_filters( 'jetpack_account_protection_send_auth_email', false, $user_id, $auth_code, $blog_id );
    
    		if ( $handled ) {
    			return true;
    		}
    
    		if ( ! $blog_id || ! $this->connection_manager->is_connected() ) {