Sindbad~EG File Manager

Current Path : /home/zada/www/app/Services/OTP/
Upload File :
Current File : /home/zada/www/app/Services/OTP/Fast2sms.php

<?php

namespace App\Services\OTP;

use App\Contracts\SendSms;

class Fast2sms implements SendSms {
    
    public function send($to, $from, $text, $template_id)
    {
        if (strpos($to, '+91') !== false) {
            $to = substr($to, 3);
        }

        if (env("ROUTE") == 'dlt_manual') {
            $fields = array(
                "sender_id" => env("SENDER_ID"),
                "message" => $text,
                "template_id" => $template_id,
                "entity_id" => env("ENTITY_ID"),
                "language" => env("LANGUAGE"),
                "route" => env("ROUTE"),
                "numbers" => $to,
            );
        } else {
            $fields = array(
                "sender_id" => env("SENDER_ID"),
                "message" => $text,
                "language" => env("LANGUAGE"),
                "route" => env("ROUTE"),
                "numbers" => $to,
            );
        }


        $auth_key = env('AUTH_KEY');

        $curl = curl_init();

        curl_setopt_array($curl, array(
            CURLOPT_URL => "https://www.fast2sms.com/dev/bulkV2",
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_ENCODING => "",
            CURLOPT_MAXREDIRS => 10,
            CURLOPT_TIMEOUT => 30,
            CURLOPT_SSL_VERIFYHOST => 0,
            CURLOPT_SSL_VERIFYPEER => 0,
            CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
            CURLOPT_CUSTOMREQUEST => "POST",
            CURLOPT_POSTFIELDS => json_encode($fields),
            CURLOPT_HTTPHEADER => array(
                "authorization: $auth_key",
                "accept: */*",
                "cache-control: no-cache",
                "content-type: application/json"
            ),
        ));

        $response = curl_exec($curl);
        $err = curl_error($curl);

        curl_close($curl);

        return $response;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists (>^ω^<)看过哭02teddd(>^ω^<)看过哭02teddd