⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
coffeeberry
/
public_html
/
core
/
app
/
Helpers
/
Edit File: SmsHelper.php
<?php namespace App\Helpers; use App\Models\Setting; use Twilio\Rest\Client; class SmsHelper { public function SendSms($to_number ,$type,$order_number = null) { $setting = Setting::first(); $code = str_split($setting->twilio_country_code); array_pop($code); $new_code = implode('',$code); $sms_section = json_decode($setting->twilio_section,true); try { // Your Account SID and Auth Token from twilio.com/console $account_sid = $setting->twilio_sid; $auth_token = $setting->twilio_token; $twilio_number = $setting->twilio_form_number; $client = new Client($account_sid, $auth_token); $body = preg_replace("/{order_number}/", $order_number ,$sms_section[$type]); $client->messages->create( $new_code.$to_number, array( 'from' => $twilio_number, 'body' => $body, ) ); } catch (\Throwable $th) { // throw $th; } } }
Simpan