woocommerce_email_from_address

woocommerce_email_from_address

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_email_from_address') is found 1 times:

  • /includes/emails/class-wc-email.php line 682
    	 * @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 );
    	}
    
    	/**
    	 * Send an email.
    	 *