woocommerce_email_reply_to_name

woocommerce_email_reply_to_name

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.10.4.3

apply_filters('woocommerce_email_reply_to_name') is found 1 times:

  • /includes/emails/class-wc-email.php line 1068
    		 * @param string   $reply_to_name Reply-to name.
    		 * @param WC_Email $email         WC_Email instance managing the email.
    		 * @param string   $default_name  Default reply-to name.
    		 */
    		$reply_to_name = apply_filters( 'woocommerce_email_reply_to_name', get_option( 'woocommerce_email_reply_to_name', '' ), $this, $reply_to_name );
    		return wp_specialchars_decode( sanitize_text_field( $reply_to_name ), ENT_QUOTES );
    	}
    
    	/**
    	 * Get the reply-to address for outgoing emails.
    	 *