No products in the cart.
- ৳ 195,000
৳ 210,000
// // 🔥 FULL SMS AUTOMATION SYSTEM (CF7 + WooCommerce + Admin) //define('GENNET_API_URL', 'https://isms.gennet.com.bd/api/v3/send-sms');define('GENNET_API_TOKEN', '$2y$12$3GAxqvF6PDET3tVhK22s8u8uhP0CivDlIa.eUBsZb2f/3/QFExgvq');define('GENNET_SID', 'ShojonSheba');define('ADMIN_PHONE', '8801717661190');// =============================== // 🔵 SMS SEND FUNCTION (COMMON) // =============================== function send_gennet_sms($phone, $message) {$data = [ "api_token" => GENNET_API_TOKEN, "sid" => GENNET_SID, "msisdn" => $phone, "sms" => $message, "csms_id" => uniqid() ];$args = [ 'body' => json_encode($data), 'headers' => [ 'Content-Type' => 'application/json' ], 'timeout' => 20 ];return wp_remote_post(GENNET_API_URL, $args); }// =============================== // 🟢 CONTACT FORM 7 SMS // =============================== add_action('wpcf7_mail_sent', 'cf7_sms_send');function cf7_sms_send($contact_form) {$submission = WPCF7_Submission::get_instance(); if (!$submission) return;$data = $submission->get_posted_data();$name = isset($data['your-name']) ? $data['your-name'] : 'Customer';$phone = ADMIN_PHONE; // admin only SMS$message = "New Lead: $name submitted a form.";send_gennet_sms($phone, $message); }// =============================== // 🟠 WOOCOMMERCE ORDER SMS // =============================== add_action('woocommerce_thankyou', 'wc_sms_send');function wc_sms_send($order_id) {if (!$order_id) return;$order = wc_get_order($order_id);$name = $order->get_billing_first_name(); $phone = $order->get_billing_phone();if (!$phone) return;$phone = preg_replace('/^0/', '880', $phone);// Customer SMS send_gennet_sms($phone, "Hi $name, your order is confirmed. Thank you!");// Admin SMS send_gennet_sms(ADMIN_PHONE, "New Order received from $name."); }
Medical Stall – Reliable Medical Equipment Provider in Bangladesh