API entegrasyon klavuzu : https://www.masgsm.com.tr/files/api-dokumantasyonu.pdf
Şimdiden teşekkür eder, herkese iyi çalışmalar dilerim.
<?php $postUrl = "https://api.masgsm.com.tr/api/smsget/v1? username=PANEL_KULLANICI_ADI&password=PANEL_SIFRESI&header=MASGSMTEST&gsm=SMS_GIDECEK_NUMARA&messag e=DENEME"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $postUrl); curl_setopt($ch, CURLOPT_TIMEOUT, 5); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $response = curl_exec($ch); curl_close($ch); echo $response; ?>