芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/app/Channels/TwilioSms.php
toTwilioSms($notifiable); if (get_option('enable_sms') == 0) { return; } $account_sid = get_option('twilio_account_sid'); $auth_token = get_option('twilio_auth_token'); $twilio_number = get_option('twilio_mobile_number'); $client = new Client($account_sid, $auth_token); try { $client->messages->create('+' . $message->getRecipient(), ['from' => $twilio_number, 'body' => $message->getContent()]); } catch (\Exception $e) {} } }