Server IP : 192.185.129.71 / Your IP : 18.221.139.13 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/libraries/sms/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Sms_twilio extends App_sms { // Account SID from twilio.com/console private $sid; // Auth Token from twilio.com/console private $token; // Twilio Phone Number private $phone; // Alphanumeric Sender ID private $senderId; public function __construct() { parent::__construct(); $this->sid = $this->get_option('twilio', 'account_sid'); $this->token = $this->get_option('twilio', 'auth_token'); $this->phone = $this->get_option('twilio', 'phone_number'); $this->senderId = $this->get_option('twilio', 'sender_id'); $this->add_gateway('twilio', [ 'name' => 'Twilio', 'info' => '<p>Twilio SMS integration is one way messaging, means that your customers won\'t be able to reply to the SMS. Phone numbers must be in format <a href="https://www.twilio.com/docs/glossary/what-e164" target="_blank">E.164</a>. Click <a href="https://support.twilio.com/hc/en-us/articles/223183008-Formatting-International-Phone-Numbers" target="_blank">here</a> to read more how phone numbers should be formatted.</p><hr class="hr-10" />', 'options' => [ [ 'name' => 'account_sid', 'label' => 'Account SID', ], [ 'name' => 'auth_token', 'label' => 'Auth Token', ], [ 'name' => 'phone_number', 'label' => 'Twilio Phone Number', ], [ 'name' => 'sender_id', 'label' => 'Alphanumeric Sender ID', 'info' => '<p><a href="https://www.twilio.com/blog/personalize-sms-alphanumeric-sender-id" target="_blank">https://www.twilio.com/blog/personalize-sms-alphanumeric-sender-id</a></p>', ], ], ]); } public function send($number, $message) { try { $client = new Twilio\Rest\Client($this->sid, $this->token); } catch (Exception $e) { $this->set_error($e->getMessage(), false); return false; } try { $client->messages->create( // The number to send the SMS $number, [ 'from' => $this->senderId ?: $this->phone, 'body' => $message, ] ); $this->logSuccess($number, $message); } catch (Exception $e) { $this->set_error($e->getMessage()); return false; } return true; } }