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



我只是在WooCommerce插件的自定义订单状态的帮助下为我的订单创建一个自定义状态"树"("在树中等待" - 标记(。 当用户成功完成付款时,状态将从"待处理"更改为"树"。经过一些处理后,我会将状态更改为正在处理,此时我需要向用户发送处理邮件。我该怎么做,我只是找到上面的代码来注册电子邮件。

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 );
}
}

代码进入函数.php活动子主题(或活动主题(的文件。经过测试并有效。

相关内容

  • 没有找到相关文章

最新更新