Crear una cuenta twilio 2018 par poder enviar SMS con PHP ☁️
Colocamos nuestro numero de telefono real al que nos va llegar un sms
Colocamos el codigo que nos llego a nuestro umero de telefono
Click en el tab de Products, Programable SMS y Continuar
Ponemos el nombre del proyecto y click en siguiente
Si van a participar mas personas damos click en invitar o saltar este paso
Click en get started
Click en get a number
Damos click en Choose this number
Se nos muestra una ventana con toda la informacion para colocar en nuestro codigo php e incluso
hacer un prueba colocando texto y enviando un sms
Si hacemos click en “Make request” nos llegara a nuestro telefono algo asi y finalmente decimos que si nos llego el sms
Para construir un app en php que envie sms desde twilio debemos descargar sus librerias desde aqui la descomprimimos y colocamos la carpeta “twilio-php-master” en el directorio de php (en mi caso /var/www/html/twilio/) y creasmo un archivo llamado index.php de tal suerte que todo que de asi
En el archivo index.php colocamos el siguiente codigo
<?php ini_set('display_errors', 1); error_reporting(E_ALL); // Require the bundled autoload file - the path may need to change // based on where you downloaded and unzipped the SDK require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Use the REST API Client to make requests to the Twilio REST API use TwilioRestClient; // Your Account SID and Auth Token from twilio.com/console $sid = 'SIDxxxxxx'; $token = 'TOKENxxxxxxxx'; $client = new Client($sid, $token); // Use the client to do fun stuff like send text messages! $client->messages->create( // the number you'd like to send the message to '+527122264370', array( // A Twilio phone number you purchased at twilio.com/console 'from' => '+15392020564', // the body of the text message you'd like to send 'body' => "Hey Jenny! Good luck on the bar exam!" ) );
Donde
SIDxxxxxx = El ID que te da twilio
TOKENxxxxxxxx = Token que te da twilio
+527122264370 = El numero al que va a llegar el sms
+15392020564 = El numero que envía el SMS (El que se compro en twilio)