woocommerce_email_reply_to_enabled

woocommerce_email_reply_to_enabled

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.10.4.3

apply_filters('woocommerce_email_reply_to_enabled') is found 1 times:

  • /includes/emails/class-wc-email.php line 1049
    		 * @since 10.4.0
    		 * @param bool     $enabled Whether reply-to is enabled.
    		 * @param WC_Email $email   WC_Email instance managing the email.
    		 */
    		$enabled = apply_filters( 'woocommerce_email_reply_to_enabled', 'yes' === get_option( 'woocommerce_email_reply_to_enabled', 'no' ), $this );
    		return (bool) $enabled;
    	}
    
    	/**
    	 * Get the reply-to name for outgoing emails.
    	 *