woocommerce_email_from_address, get_option( woocommerce_email_from_address
woocommerce_email_from_address, get_option( woocommerce_email_from_address
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_email_from_address, get_option( woocommerce_email_from_address') is found 1 times:
- /includes/emails/class-wc-email.php line 1056
* @param string $from_email Default wp_mail() email address to send from. * @return string */ public function get_from_address( $from_email = '' ) { $from_email = apply_filters( 'woocommerce_email_from_address', get_option( 'woocommerce_email_from_address' ), $this, $from_email ); return sanitize_email( $from_email ); } /** * Check if reply-to is enabled for outgoing emails. *