Woocommerce - 从自定义订单状态发送自定义电子邮件

时间:2016-04-13 05:17:12

标签: wordpress email woocommerce

我是Wordpress的新手,当我的订单状态更改为特定的自定义订单状态时,我试图弄清楚如何发送电子邮件。

这是我的代码:

function register_awaiting_shipment_order_status() {
register_post_status( 'wc-awaiting-shipment', array(
    'label'                     => 'Shipped',
    'public'                    => true,
    'exclude_from_search'       => false,
    'show_in_admin_all_list'    => true,
    'show_in_admin_status_list' => true,
    'label_count'               => _n_noop( 'Awaiting shipment <span     class="count">(%s)</span>', 'Awaiting shipment <span class="count">(%s)    </span>' )
) );
}
add_action( 'init', 'register_awaiting_shipment_order_status' );

// Add to list of WC Order statuses
function add_awaiting_shipment_to_order_statuses( $order_statuses) {

$new_order_statuses = array();

// add new order status after processing
foreach ( $order_statuses as $key => $status ) {

    $new_order_statuses[ $key ] = $status;

    if ( 'wc-processing' === $key ) {
        $new_order_statuses['wc-awaiting-shipment'] = 'Shipped';
       // WC()->mailer()->emails['wc-awaiting-shipment']->trigger($order_id);
    }
}

return $new_order_statuses;
}
add_filter( 'wc_order_statuses', 'add_awaiting_shipment_to_order_statuses' );

当订单状态更改为此自定义订单状态(&#39;已发货&#39;)时,如何向客户发送电子邮件?

提前致谢

1 个答案:

答案 0 :(得分:1)

您可以将此插件用于您的解决方案。

this

或者

您可以转到插件settings => Email tab并安装(启用)您想要的通知。

希望这会对你有所帮助