PHP code example of iletimerkezi / iletimerkezi-php
1. Go to this page and download the library: Download iletimerkezi/iletimerkezi-php library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iletimerkezi / iletimerkezi-php example snippets
use IletiMerkezi\IletiMerkeziClient;
$client = new IletiMerkeziClient('API_KEY', 'API_HASH', 'BASLIK');
$smsService = $client->sms();
$resp = $smsService
->disableIysConsent()
->send('5057023100', 'Hello World - 5');
if($resp->ok()) {
echo 'SMS Gönderildi: ' . $resp->orderId() . "\n";
} else {
echo 'Hata: ' . $resp->code() . ':' . $resp->message() . "\n";
}
use IletiMerkezi\IletiMerkeziClient;
$client = new IletiMerkeziClient('API_KEY', 'API_HASH', 'BASLIK');
$smsService = $client->sms();
$response = $smsService->send(['5057023100'], 'Merhaba Dünya');
if ($response->ok()) {
echo 'Sipariş ID: ' . $response->orderId();
} else {
echo 'Hata: ' . $response->message();
}
$reportService = $client->reports();
$response = $reportService->get(123456);
if ($response->ok()) {
echo 'Sipariş Durumu: ' . $response->orderStatus();
} else {
echo 'Hata: ' . $response->message();
}
$blacklistService = $client->blacklist();
$response = $blacklistService->create('5057023100');
if ($response->ok()) {
echo 'Başarıyla eklendi';
} else {
echo 'Hata: ' . $response->message();
}