Try the Send SMS API
You must login in to send SMS
More Information
The Telekom Send SMS API allows your app to send text messages to mobile & landline networks.
How it works
require_once (dirname(__FILE__). "/sdk/SendSmsStatusConstants.php"); require_once (dirname(__FILE__). "/sdk/SendSmsClient.php"); // Recipients $recipients = "+49123123456789, 0123123456789"; // Message $message = "Hello world!"; // Senders name or phone (must be validated) $originator = "DevGarden"; // Should the SMS be sent as flash SMS $flash = "false"; // Telekom Developer Center user name $username = "login"; // Telekom Developer Center password $password = "password"; // Constructs the Telekom client using the user name and password. $client = new SendSmsClient("production", $username, $password); // The result of sending an SMS $response = null; try { // Sends the SMS $response = $client->sendSms($recipients, $message, $originator, $flash, null); // Test, if the invocation of sendSms() was successful. if(!($response->getStatus()->getStatusConstant() == SendSmsStatusConstants::SUCCESS)) { $errorMessage = "The error code is: ".$response->getStatus()->getStatusCode(); throw new Exception($errorMessage); } } catch(Exception $e) { print $e->getMessage()."\n"; print $e->getTraceAsString(); exit(1); } print "Your SMS has been sent successfully";