Path : /var/www/html/thb_loan_system/app/Helpers/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/thb_loan_system/app/Helpers/Infobip.php |
<?php namespace App\Helpers; use App\Models\Setting; class Infobip { //Constructor.. public function __construct($from, $message, $mobile) { $mobile_num = $mobile; if (is_numeric($mobile_num) == TRUE) { $mobile_num = str_replace(' ', '', $mobile_num); } //REMOVE LEADING ZEROS $message = "$message "; $username = Setting::where('setting_key', 'infobip_username')->first()->setting_value; $password = Setting::where('setting_key', 'infobip_password')->first()->setting_value; $message = urlencode($message); $url="http://api.infobip.com/api/v3/sendsms/plain?user=$username&password=$password&sender=$from&SMSText=$message&GSM=$mobile_num&type=longSMS"; //$url="http://api.infobip.com/api/v3/sendsms/plain?user=$username&password=&sender=$from&SMSText=$message&GSM=$mobile_num&type=longSMS"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_VERBOSE, true); $curl_scraped_page = curl_exec($ch); curl_close($ch); } } ?>