コード例 #1
0
 /**
  * Send customer an SMS when their order status changes
  *
  * @since 1.1
  */
 public function send_customer_notification($order_id)
 {
     $notification = new WC_Twilio_SMS_Notification($order_id);
     $notification->send_automated_customer_notification();
 }