停止为 Woocommerce 中的特定用户发送特定电子邮件通知

Stop send specific email notification for specific users in Woocommerce

我想停止为特定 user/email 发送 Woocommerce 电子邮件。这是我在订单完成时停止发送电子邮件的示例代码。

<?php
add_filter( 'woocommerce_email_headers', 'ieo_ignore_function', 10, 2);

function ieo_ignore_function($headers, $email_id, $order) {
    $list = 'admin@example.com,cs@example.com';
    $user_email = (method_exists( $order, 'get_billing_email' ))? $order->get_billing_email(): $order->billing_email;
    $email_class = wc()->mailer();
    if($email_id == 'customer_completed_order'){
        if(stripos($list, $user_email)!==false){
            remove_action( 'woocommerce_order_status_completed_notification', array( $email_class->emails['WC_Email_Customer_Completed_Order'], 'trigger' ) );
        }
    }
}

但 WP 继续发送电子邮件。我尝试在 Woocommerce 文档和源代码 (github) 和 Whosebug 中搜索,但仍然无法解决这个问题。

在此示例中,"Customer completed order" 禁用特定客户电子邮件地址的通知:

// Disable "Customer completed order" for specifics emails
add_filter( 'woocommerce_email_recipient_customer_completed_order', 'completed_email_recipient_customization', 10, 2 );
function completed_email_recipient_customization( $recipient, $order ) {
    // Disable "Customer completed order
    if( is_a('WC_Order', $order) && in_array($order->get_billing_email(), array('jack@mail.com','emma@mail.com') ) ){
        $recipient = '';
    }
    return $recipient;
}

代码进入您的活动子主题(活动主题)的 function.php 文件。已测试并有效。

Note: A filter hook needs always to return the filtered main function argument


也可以通过用户 ID 完成,例如:

// Disable "Customer completed order" for specifics User IDs
add_filter( 'woocommerce_email_recipient_customer_completed_order', 'completed_email_recipient_customization', 10, 2 );
function completed_email_recipient_customization( $recipient, $order ) {
    // Disable "Customer completed order
    if( is_a('WC_Order', $order) && in_array($order->get_customer_id(), array(25,87) ) ){
        $recipient = '';
    }
    return $recipient;
}

代码进入您的活动子主题(活动主题)的 function.php 文件。已测试并有效。


相似:

虽然上面的答案有效,但这似乎是更直接的解决方案:

add_filter( 'woocommerce_email_recipient_customer_completed_order', 'completed_email_recipient_customization', 10, 2 );
function completed_email_recipient_customization( $recipient, $order ) {
    if( in_array($recipient, ['some@email2block.com', 'another@email2block.com'] ) ) {
        $recipient = '';
    }
    return $recipient;
}