producion changes

This commit is contained in:
Hamidreza Ranjbarpour
2026-05-23 09:28:21 +00:00
parent 4a2612837b
commit 21e9931298
15 changed files with 178 additions and 136 deletions

View File

@@ -12,28 +12,28 @@ class SmsClass
{
public function sendSms($mobile, $msg)
{
if (App::environment('production')) {
$client = new SoapClient("http://172.30.5.36/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;
}
// if (App::environment('production')) {
//
//
// $client = new SoapClient("http://172.30.5.36/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/smspro.asmx?WSDL");