change nominatim original function
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Facades\Sms;
|
||||
|
||||
use Illuminate\Support\Facades\App;
|
||||
use Illuminate\Http\Request;
|
||||
use Carbon\Carbon;
|
||||
use SoapFault;
|
||||
@@ -11,28 +12,29 @@ class SmsClass
|
||||
{
|
||||
public function sendSms($mobile, $msg)
|
||||
{
|
||||
if (App::environment('production')) {
|
||||
|
||||
$client = new SoapClient("http://sms1000.ir/webservice/sms.asmx?WSDL");
|
||||
$date = date('d-m-y h:i:s');
|
||||
$date = str_replace(" ", "T", $date);
|
||||
$result = $client->Send(
|
||||
array(
|
||||
'Username' => 'admin',
|
||||
'Password' => 'admin141',
|
||||
'ShortCode' => '1000141',
|
||||
'Cellphones' => $mobile,
|
||||
'Message' => $msg,
|
||||
'Farsi' => true,
|
||||
// 'SendDate' => $date
|
||||
// 'uTopic' => false,
|
||||
// 'uFlash' => false
|
||||
)
|
||||
);
|
||||
|
||||
return $result->SendResult;
|
||||
}
|
||||
|
||||
|
||||
$client = new SoapClient("http://sms1000.ir/webservice/sms.asmx?WSDL");
|
||||
$date = date('d-m-y h:i:s');
|
||||
$date = str_replace(" ", "T", $date);
|
||||
$result = $client->Send(
|
||||
array(
|
||||
'Username' => 'admin',
|
||||
'Password' => 'admin141',
|
||||
'ShortCode' => '1000141',
|
||||
'Cellphones' => $mobile,
|
||||
'Message' => $msg,
|
||||
'Farsi' => true,
|
||||
// 'SendDate' => $date
|
||||
// 'uTopic' => false,
|
||||
// 'uFlash' => false
|
||||
)
|
||||
);
|
||||
|
||||
$x = $result->SendResult;
|
||||
|
||||
return $x;
|
||||
|
||||
// $client = new SoapClient("http://sms1000.ir/webservice/smspro.asmx?WSDL");
|
||||
// $result = $client->doSendSMS(
|
||||
// array(
|
||||
|
||||
Reference in New Issue
Block a user