Send SMS - messages all over the world using twilio
Note: Single class file only for sending sms - messages. Other twilio features are not included.
Yii 1.1 or above
PHP 5 above
Copy the twiliosms folder into protected/extensions/
require_once('/path/to/extensions/twilio/Services/Twilio.php'); $sid = "{{ ACCOUNT SID }}"; // Your Account SID from www.twilio.com/user/account $token = "{{ AUTH TOKEN }}"; // Your Auth Token from www.twilio.com/user/account $client = new Services_Twilio($sid, $token); $message = $client->account->sms_messages->create( '+14158141829', // From a valid Twilio number '+14159352345', // Text this number "Hello world! This is admin, testing our twilio api" );
Be the first person to leave a comment
Please login to leave your comment.