Sms.php 789 B

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace mall\library\sms;
  10. use mall\library\sms\alibaba\Alibaba;
  11. use think\facade\Db;
  12. class Sms {
  13. public static function send($data = []){
  14. $content = Db::name("setting")->where(["name"=>"sms"])->value("value");
  15. $setting = json_decode($content,true);
  16. $Alibaba = new Alibaba($setting);
  17. return $Alibaba->send($data);
  18. }
  19. }