第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

當(dāng)訂單狀態(tài)發(fā)生變化時(shí)向 WordPress 用戶發(fā)送電子郵件?

當(dāng)訂單狀態(tài)發(fā)生變化時(shí)向 WordPress 用戶發(fā)送電子郵件?

PHP
侃侃爾雅 2023-09-22 16:19:58
我正在使用一個(gè)名為 RestroPress 的插件 - 它用于餐廳送貨。我想創(chuàng)建一個(gè)腳本,以便在$order_statuses設(shè)置為'ready'電子郵件時(shí)發(fā)送到特定的 WordPress 用戶角色。這是一個(gè)示例代碼,其中包含我獲取此信息的位置: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 );}關(guān)于我如何做到這一點(diǎn)的任何線索?
查看完整描述

1 回答

?
阿波羅的戰(zhàn)車

TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超6個(gè)贊

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



查看完整回答
反對(duì) 回復(fù) 2023-09-22
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)