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