woocommerce_email_reply_to_enabled
woocommerce_email_reply_to_enabled
Hook Type: filter
Displaying hooks found in version: woocommerce.10.5.3apply_filters('woocommerce_email_reply_to_enabled') is found 1 times:
- /includes/emails/class-wc-email.php line 1066
* @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. *