dongwo5589 2016-09-28 05:33
浏览 89
已采纳

如何在woocommerce_email_headers钩子中获取订单ID

I am trying to set the email address when have a new order. And I stored the new email in wp_postmeta.

How to get the $order_id when using woocommerce_email_headers?

I need to get the order_id to use it with get_post_meta() function.

Here is my code:

function techie_custom_wooemail_headers( $headers, $object) {

    $email = get_post_meta( $order_id, '_approver_email', true );

    // Replace the emails below to your desire email
    $emails = array('eee@hotmail.com', $email);


    switch($object) {
        case 'new_order':
            $headers .= 'Bcc: ' . implode(',', $emails) . "
";
            break;
        case 'customer_processing_order':
            $headers .= 'Bcc: ' . implode(',', $emails) . "
";
            break;
        case 'customer_completed_order':
        case 'customer_invoice':
            $headers .= 'Bcc: ' . implode(',', $emails) . "
";
            break;

        default:
    }

    return $headers;
}

add_filter( 'woocommerce_email_headers', 'techie_custom_wooemail_headers', 10, 2);

How do I get back the data?

Thanks.

  • 写回答

2条回答 默认 最新

  • drtkyykai004574380 2016-09-28 08:01
    关注

    Updated: Added compatibility with Woocommerce version 3+

    I have made some tests trying to output raw data from $order object without success. After some other tests I got now the correct order ID. I have use the code below for my test to be sure. Replace the value of $your_email by your own email. Then you will receive an email with the order ID in the header name:

    function testing_hook_headers( $headers, $id, $order ) {
        // The order ID | Compatibility with WC version +3
        $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id;
    
        $your_email = '<name@email.com>';
        $headers = "To: Order Num $order_id $your_email";
        return $headers;
    }
    add_filter( 'woocommerce_email_headers', 'testing_hook_headers', 10, 3);
    

    So Here is your code:

    function techie_custom_wooemail_headers( $headers, $email_id, $order ) {
    
        // The order ID | Compatibility with WC version +3
        $order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id;
    
        $email = get_post_meta( $order_id, '_approver_email', true );
    
        // Replace the emails below to your desire email
        $emails = array('eee@hotmail.com', $email);
    
        switch( $email_id ) {
            case 'new_order':
                $headers .= 'Bcc: ' . implode(',', $emails) . "
    ";
                break;
            case 'customer_processing_order':
                $headers .= 'Bcc: ' . implode(',', $emails) . "
    ";
                break;
            case 'customer_completed_order':
            case 'customer_invoice':
                $headers .= 'Bcc: ' . implode(',', $emails) . "
    ";
                break;
    
            default:
        }
    
        return $headers;
    }
    
    add_filter( 'woocommerce_email_headers', 'techie_custom_wooemail_headers', 10, 3);
    

    I havent test your code as it's particular, but you have the right manner to get order ID.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条