当订单状态发生变化时向 WordPress 用户发送电子邮件?

我正在使用一个名为 RestroPress 的插件 - 它用于餐厅送货。


我想创建一个脚本,以便在$order_statuses设置为'ready'电子邮件时发送到特定的 WordPress 用户角色。


这是一个示例代码,其中包含我获取此信息的位置:


function rpress_get_order_statuses() {

    $order_statuses = array(

      'pending'     => __( 'Pending', 'restropress' ),

      'accepted'    => __( 'Accepted', 'restropress' ),

      'processing'  => __( 'Processing', 'restropress' ),

      'ready'       => __( 'Ready', 'restropress' ),

      'transit'     => __( 'In Transit', 'restropress' ),

      'cancelled'   => __( 'Cancelled', 'restropress' ),

      'completed'   => __( 'Completed', 'restropress' ),

    );

    return apply_filters( 'rpress_order_statuses', $order_statuses );

}

关于我如何做到这一点的任何线索?


侃侃尔雅
浏览 78回答 1
1回答

阿波罗的战车

function send_customer_purchase_notification_ready( $payment_id, $new_status ) {    $order_status = rpress_get_option( $new_status );    if ( !empty( $payment_id ) && $new_status !== 'pending' && $new_status == 'ready' ) {                          $message = 'Order is ready';        $to = 'harshitvaishnav612@gmail.com';        $subject = "Order is ready";        $headers = '';         //Here put your Validation and send mail        $sent = wp_mail($to, $subject, strip_tags($message), $headers);    }}add_action( 'rpress_update_order_status', 'send_customer_purchase_notification_ready' , 10, 2 );
打开App,查看更多内容
随时随地看视频慕课网APP