Setarea SMS Gateway-ului în doar 5 minute
Cu ajutorul de SeeMe SMS Gateway integrarea trimiterii de SMS îţi va lua doar 5 minute. Încearcă acum!
Modul cel mai simplu de conectare la SMS Gateway este cu ajutorul SeeMe SMS Gateway PHP class:
include('seeme-gateway-class.php'); // Connect to SeeMe Gateway $SeeMe = new SeeMeGateway('yourAPIkey'); try { $SeeMe->sendSMS( '40744123456', // destination 'This is my message', // message 'senderID' // optional sender ); print_r( $SeeMe->getResult() ); } catch ( Exception $e ) { // handle exception // print out the response // we will get an aassociative array print_r( $SeeMe->getResult() ); die(); }
Codul de exemplu trimite mesajul 'This is my message' pe numărul +40 744 123 456 cu expeditorul default setat pe pagina Setările SMS Gateway.
Mai multe detalii: SeeMe SMS Gateway PHP Class.
Dacă nu ai încă nici o cheie API, aici poţi crea una: Setările SMS Gateway
(Dacă vrei să afli informaţii generale despre beneficiile şi serviciile SeeMe Gateway atunci vizitează pagina SeeMe SMS Gateway. Dacă te interesează documentaţiile şi informaţiile legate de implementare, atunci vezi pagina Descrierea de SeeMe SMS Gateway.)