Sms

/anonymous-sms │── Anonymous SMS

Send Anonymous SMS

(Frontend) │── "TXTIND", // Sender ID (number hide hota hai) "message" => $message, "language" => "english", "route" => "q", "numbers" => $mobile, ); $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://www.fast2sms.com/dev/bulkV2", CURLOPT_RETURNTRANSFER => true, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => json_encode($fields), CURLOPT_HTTPHEADER => array( "authorization: $apiKey", "content-type: application/json" ), )); $response = curl_exec($curl); curl_close($curl); echo "

Message Sent Successfully ✅

"; ?> (Backend logic)

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.