You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: admin/Model/Product/Product_m.php
+26-1
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,8 @@ protected function getId ($id) {
41
41
tbl_customer.name AS 'Tên khách hàng',
42
42
tbl_user.name AS 'NV chăm sóc',
43
43
title,
44
-
tbl_customer.email
44
+
tbl_customer.email,
45
+
tbl_customer.phone
45
46
FROM
46
47
tbl_customer,
47
48
tbl_care,
@@ -252,6 +253,30 @@ protected function sendMail($email, $name, $rows, $total){
252
253
}
253
254
}
254
255
256
+
// START xử lý gửi tin nhắn cho khách
257
+
protectedfunctionsendSMS($phone, $customer_name){
258
+
$url = 'http://183.91.2.4:6543/mp/brandname?wsdl'; // Link API
259
+
260
+
$client = newSoapClient($url); // Khởi tạo đối tưởng SoapClient
261
+
262
+
$brandname = 'DHCH STORE'; // không thay đổi để nguyên
263
+
//$phone = '0373263978'; // Đưa số điện thoại của khách cần gửi vào đây
264
+
$content = '[TEST]'. ' Chao '.$customer_name.' Don hang cua ban da duoc xac nhan. Tai khoan cua ban: '.$phone.', Mat khau: 123456. Vui long dang nhap trang chu Millennium Watch de doi mat khau va tra cuu lich su mua hang: https://datgautedy.xyz/'; // Nội dung gửi tin nhắn cho khách
0 commit comments