|
@@ -3,7 +3,7 @@
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
-use App\Facades\Servers\Aliyun\Sms;
|
|
|
+use App\Facades\Servers\Sms\GuoDu as Sms;
|
|
|
use App\Models\OrdersProduct as Model;
|
|
|
|
|
|
class OrdersNotice extends Command
|
|
@@ -63,7 +63,7 @@ class OrdersNotice extends Command
|
|
|
// 组合数据
|
|
|
$phoneList = implode(',',$phoneList);
|
|
|
// 给这些手机号发送一条阿里云短信
|
|
|
- $result = $phoneList ? Sms::sendSms($phoneList,'开邻智数','SMS_478160083') : [];
|
|
|
+ $result = $phoneList ? Sms::sendSms($phoneList,'尊敬的地区代表,您近期有待处理订单,请尽快登录系统后台处理https://mall.findit.ltd/admin','开邻') : [];
|
|
|
// 返回结果
|
|
|
return $result;
|
|
|
}
|