Измените адрес для ответа на электронные письма клиентов woocommerce на основе содержимого заказа

#wordpress #email #woocommerce

Вопрос:

Нашел следующий код ниже; не уверен, можно ли настроить его, чтобы изменить адрес для отправки или отправки ответов на все электронные письма клиентов Woocommerce в зависимости от товаров заказа или категории товаров.

 
// Utility function to get the shipping method Id from order object
function wc_get_shipping_method_id( $order ){
    foreach ( $order->get_shipping_methods() as $shipping_method ) {
        return $shipping_method->get_method_id();
    }
}

// Add coditionally a "reply to" based on shipping methods IDs for specific email notifications
add_filter( 'woocommerce_email_headers', 'add_headers_replay_to_conditionally', 10, 3 );
function add_headers_replay_to_conditionally( $headers, $email_id, $order ) {
    // Avoiding errors
    if ( ! is_a( $order, 'WC_Order' ) || ! isset( $email_id ) )
        return $headers;

    // The defined emails notifications to customer
    $allowed_email_ids = array('customer_on_hold_order', 'customer_processing_order', 'customer_completed_order');

    // Only for specific email notifications to the customer
    if( in_array( $email_id, $allowed_email_ids ) ) {
        // Local Pickup Plus shipping method
        if( wc_get_shipping_method_id( $order ) === 'local_pickup_plus' ){
            $headers .= "Reply-to: reply1@webshop.com". "rn"; // Email adress 1
        } 
        // Other shipping methods
        else {
            $headers .= "Reply-to: reply2@webshop.com". "rn"; // Email adress 2
        }
    }

    return $headers;
} 

 

Будет ли get_product_id работать в этом случае? Можно ли вместо этого использовать категорию продуктов? каков был бы здесь наилучший подход?

 function wc_get_product_id( $order ){
    foreach ( $order->get_product_id(); as $product_id ) {
        return $product_id->get_method_id();
    } 
}

        if( wc_get_product_id( $order ) === ‘22928’ ){