Send SMS using php-curl
How Send SMS using php-curl
Below is a php code example to send SMS through SMS.Studio APIs
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sms.studio/customer/custom-sms?
api_token=3o489uw8i&response_type=json&from_name=SMSSTUDIO&to=RECEPIENT&text=Howdy!
");
curl_setopt($ch, CURLOPT_HEADER, 0);
$response = curl_exec($ch);
curl_close($ch);
echo $response;