发送有关订单状态从自定义更改为处理中的处理电子邮件通知

Send processing email notification on order status change from a custom to processing

我刚刚在 Custom Order Status for WooCommerce 插件的帮助下为我的订单创建了自定义状态 'tree'('waiting in tree' - 已标记)。 当用户支付成功后,状态会从'pending'变为'tree'。经过一些处理后,我会将状态变为处理中,此时我需要将处理邮件发送给用户。怎么办啊,我就是找到上面的代码注册邮箱。

function so_27112461_woocommerce_email_actions( $actions ){
        $actions[] = 'woocommerce_order_status_tree_to_processing';
        return $actions;
    }
    add_filter( 'woocommerce_email_actions', 'so_27112461_woocommerce_email_actions' );

但是如何触发处理邮件。

您使用的插件有点过时(自 WooCommerce 3 发布以来未更新)。

你不需要任何插件来做你想做的事,只需下面这几个钩子函数:

// Add custom status to order list
add_action( 'init', 'register_custom_post_status', 10 );
function register_custom_post_status() {
    register_post_status( 'wc-tree', array(
        'label'                     => _x( 'Waiting in tree', 'Order status', 'woocommerce' ),
        'public'                    => true,
        'exclude_from_search'       => false,
        'show_in_admin_all_list'    => true,
        'show_in_admin_status_list' => true,
        'label_count'               => _n_noop( 'Waiting in tree <span class="count">(%s)</span>', 'Waiting in tree <span class="count">(%s)</span>', 'woocommerce' )
    ) );
}

// Add custom status to order page drop down
add_filter( 'wc_order_statuses', 'custom_wc_order_statuses' );
function custom_wc_order_statuses( $order_statuses ) {
    $order_statuses['wc-tree'] = _x( 'Waiting in tree', 'Order status', 'woocommerce' );
    return $order_statuses;
}
// Adding custom status 'tree' to admin order list bulk dropdown
add_filter( 'bulk_actions-edit-shop_order', 'custom_dropdown_bulk_actions_shop_order', 20, 1 );
function custom_dropdown_bulk_actions_shop_order( $actions ) {
    $actions['mark_tree'] = __( 'Mark Waiting in tree', 'woocommerce' );
    return $actions;
}

// Enable the action
add_filter( 'woocommerce_email_actions', 'filter_woocommerce_email_actions' );
function filter_woocommerce_email_actions( $actions ){
    $actions[] = 'woocommerce_order_status_wc-tree';
    return $actions;
}

// Send Customer Processing Order email notification when order status get changed from "tree" to "processing"
add_action('woocommerce_order_status_changed', 'custom_status_email_notifications', 20, 4 );
function custom_status_email_notifications( $order_id, $old_status, $new_status, $order ){
    if ( $old_status == 'tree' && $new_status == 'processing' ) {
        // Get all WC_Email instance objects
        $wc_emails = WC()->mailer()->get_emails();
        // Sending Customer Processing Order email notification
        $wc_emails['WC_Email_Customer_Processing_Order']->trigger( $order_id );
    }
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。测试和工作。