From 78722aa2a12279f6eea11a72ce7ed7265a327f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=B1=BC=E5=BC=80=E5=8F=91?= Date: Tue, 8 Jul 2025 15:24:16 +0800 Subject: [PATCH] 0708 --- common/helpers/comm_helper.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/helpers/comm_helper.php b/common/helpers/comm_helper.php index 0facb79c..61f92af0 100644 --- a/common/helpers/comm_helper.php +++ b/common/helpers/comm_helper.php @@ -438,7 +438,8 @@ if (!function_exists('send_sms')) { require_once COMMPATH . '/third_party/alisms/alisms.php'; $template = 'SMS_218630210'; $alisms = new AliSms(); - $alisms->sendSms($mobile, array('code' => $code), $template, $sign); + $rt = $alisms->sendSms($mobile, array('code' => $code), $template, $sign); + debug_log($rt . "\n", 'sms.log'); return true; } }