You can use the following code and change the default values

<?php
//Change Default values below
$apiEndpoint = 'https://yourdomaindotcom/SMSApi/send'
$userId = 'YourUsername';
$password = 'YourPassword';
$message = 'Enter your message here';
$senderId - 'SMPPCR';
$file = new CURLFILE('/path/to/txt_sample_mobile.txt', 'text/plain', 'txt_sample_mobile.txt');
$dltTemplateId = '1xxxxxxxxxx';

//Optional parameters
$apiKey = '';//optional if you are using password else required
$dltEntityId = '';//Optional

//Do not edit from here
$post = array('userid' => $userId,'password' => $password,'senderid' => $senderId,'dltEntityId' => $dltEntityId,'sendMethod' => 'bulkupload','file' => $file, 'msgType' => 'text','msg' => $message,'dltTemplateId' => $dltTemplateId,'output' => 'json','duplicatecheck' => 'true');

$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => $apiEndpoint,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_SSL_VERIFYHOST => false,
  CURLOPT_SSL_VERIFYPEER => false,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => $post,
  CURLOPT_HTTPHEADER => array(
    'Cookie: PHPSESSID=rk069jiq3n2ifnp0h810ip3gn2',
    "apikey: $apiKey"
  ),
));
$response = curl_exec($curl);
curl_close($curl);
print_r($response);

Phone File Sample

You can save the file, txt_sample_mobile.txt, as follows;

Phone
9199999xxxxx
9199998xxxxx

Save this interesting page on your Favorite Social Media