Nel tutorial di oggi imparerete come inviare messaggi di testo con PHP utilizzando le API TextMagic.
TextMagic è un efficace webservice in grado fornire delle API per una varietà di linguaggi (PHP, Perl, Python, Ruby, Java! Ecc.).

 
// Include the TextMagic PHP lib
require(‘textmagic-sms-api-php/TextMagicAPI.php’);
 
// Set the username and password information
$username = ‘myusername’;
$password = ‘mypassword’;
 
// Create a new instance of TM
$router = new TextMagicAPI(array(
 ‘username’ => $username,
 ‘password’ => $password
));
 
// Send a text message to ’999-123-4567′
$result = $router->send(‘Wake up!’, array(9991234567), true);
 
// result:  Result is: Array ( [messages] => Array ( [19896128] => 9991234567 ) [sent_text] => Wake up! [parts_count] => 1 )
 

fonte: www.sastgroup.com ? Vai al post originale