Package Data | |
---|---|
Maintainer Username: | shipu |
Maintainer Contact: | shipuahamed01@gmail.com (Shipu Ahamed) |
Package Create Date: | 2017-11-17 |
Package Last Update: | 2021-07-27 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:13:55 |
Package Statistics | |
---|---|
Total Downloads: | 380 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 23 |
Total Watchers: | 5 |
Total Forks: | 20 |
Total Open Issues: | 0 |
Go to terminal and run this command
composer require shipu/muthofun-sms-gateway
Wait for few minutes. Composer will automatically install this package for your project.
Below Laravel 5.5 open config/app
and add this line in providers
section
Shipu\MuthoFun\MuthoFunServiceProvider::class,
For Facade support you have add this line in aliases
section.
'MUTHOFUN' => Shipu\MuthoFun\Facades\MuthoFun::class,
Then run this command
php artisan vendor:publish --provider="Shipu\MuthoFun\MuthoFunServiceProvider"
This package is required two configurations.
muthofun-sms-gateway is take an array as config file. Lets services
use Shipu\MuthoFun\MUTHOFUN;
$config = [
'username' => 'Your Username',
'password' => 'Your Password'
];
$sms = new MUTHOFUN($config);
This package is also support Laravel. For laravel you have to configure it as laravel style.
Go to app\muthofun.php
and configure it with your credentials.
return [
'username' => 'Your Username',
'password' => 'Your Password'
];
Its very easy to use. This packages has a lot of functionalities and features.
In PHP:
use \Shipu\MuthoFun\MuthoFun;
...
$sms = new MUTHOFUN($config);
$response = $sms->message('your text here !!!', '01606022000')->send(); // Guzzle Response with request data
// For another example please see below laravel section.
return $response->autoParse(); // Getting only response contents.
In Laravel:
use \Shipu\MuthoFun\Facades\MuthoFun;
...
$sms = MUTHOFUN::message('your text here !!!', '01606022000')->send(); // Guzzle Response with request data
// or
$sms = MUTHOFUN::message('your text here !!!')->to('01606022000')->send();
// or
$sms = MUTHOFUN::send(
[
'message' => "your text here",
'to' => '01616022000'
]
);
return $sms->autoParse(); // Getting only response contents.
$sms = MUTHOFUN::message('your text here !!!')
->to('01616022669')
->to('01845736124')
->to('01745987364')
->send();
// or you can try below statements also
$sms = MUTHOFUN::message('your text here !!!', '01616022669')
->to('01845736124')
->to('01745987364')
->send();
// or
$users = [
'01616022669',
'01845736124',
'01745987364'
];
$sms = MUTHOFUN::message('your text here !!!',$users)->send();
$sms = MUTHOFUN::message('your text here one !!!')->to('01616022669')
->message('your text here two !!!')->to('01845736124')
->message('your text here three !!!')->to('01745987364')
->send();
// or
$sms = MUTHOFUN::message('your text here one !!!', '01616022669')
->message('your text here two !!!', '01845736124')
->message('your text here three !!!', '01745987364')
->send();
// or
$sms = MUTHOFUN::send([
[
'message' => "your text here one !!!",
'to' => '01616022669'
],
[
'message' => "your text here two !!!",
'to' => '01707722669'
],
[
'message' => "your text here three !!!",
'to' => '01745987364'
]
]);
// or
$sms = MUTHOFUN::message('your text here one !!!', '01616022669')->send([
[
'message' => "your text here two !!!",
'to' => '01707722669'
],
[
'message' => "your text here three !!!",
'to' => '01745987364'
]
]);
Suppose you have to send SMS to multiple users but you want to mentions their name dynamically with message. So what can you do? Ha ha this package already handle this situations. Lets see
$users = [
['01670420420', ['Nahid', '1234']],
['01970420420', ['Rana', '3213']],
['01770420420', ['Shipu', '5000']],
['01570420420', ['Kaiser', '3214']],
['01870420420', ['Eather', '7642']]
]
$sms = new \Shipu\MuthoFun\MUTHOFUN(config('muthofun'));
$msg = $sms->message("Hello %s , Your promo code is: %s", $users)->send();
// or
$users = [
'01670420420' => ['Nahid', '1234'],
'01970420420' => ['Rana', '3213'],
'01770420420' => ['Shipu', '5000'],
'01570420420' => ['Kaiser', '3214'],
'01870420420' => ['Eather', '7642']
]
$sms = new \Shipu\MuthoFun\MUTHOFUN(config('muthofun'));
$msg = $sms->message("Hello %s , Your promo code is: %s", $users)->send();
Here this messege will sent as every users with his name and promo code like:
8801670420420
- Hello Nahid , Your promo code is: 12348801970420420
- Hello Rana , Your promo code is: 32138801770420420
- Hello Shipu , Your promo code is: 50008801570420420
- Hello Kaiser , Your promo code is: 12348801870420420
- Hello Eather , Your promo code is: 7642$sms = MUTHOFUN::numberPrefix('91')->message('your text here !!!', '01606022000')->send();
Default number prefix is 88
;
$sms = MUTHOFUN::debug(true)->message('your text here !!!', '01606022000')->send();
Default value is false
. When debug true
it's stop sending SMS and return sending query strings.
$sms = MUTHOFUN::autoParse(true)->message('your text here !!!', '01606022000')->send();
Default value is false
.
$sms = MUTHOFUN::template(false)->message('your text here !!!', '01606022000')->send();
Default value is true
.
$sms->autoParse();
Response :
SimpleXMLElement {#212 ▼
+"sms": SimpleXMLElement {#216 ▼
+"smsclientid": "713231739"
+"messageid": "500930552"
+"mobile-no": "+8801616022669"
}
Highly inspired by Apiz Package and Sslwireless SMS Gateway
Special Thanks to Salahuddin Rana
Hey dude! Help me out for a couple of :beers:!