Simple SMS is an easy to use package for Laravel that adds the capability to send and receive SMS/MMS messages to mobile phones from your web app. It currently supports a free way to send SMS messages through E-Mail gateways provided by the wireless carriers. The package also supports 9 paid services, Call Fire, EZTexting, FlowRoute, LabsMobile, Mozeo, Nexmo, Plivo, Twilio, Zenvia, SMSgw, Mobily.ws.
- Introduction
- Requirements
- Configuration
- Driver Support
- Usage
- Outgoing Message Enclosure
- Incoming Message
- PHP: >= 7.x
- Guzzle >= 6.0
$ composer require cammac/sms
if your Laravel below 5.5 you need to add PostMarkServiceProvider
in config/app.php
in providers
list
\Cammac\LaravelSms\LaravelSmsServiceProvider::class,
if your Laravel below 5.5 you need to add PostMarkServiceProvider
in config/app.php
in aliases
list Add
'SMS' => SimpleSoftwareIO\SMS\Facades\SMS::class,
in your config/app.php
configuration file within the aliases
array.
You must run the following command to save your configuration files to your local app:
$ php artisan vendor:publish
This will copy the configuration files to your config
folder.
This driver sends messages through the smsgw.net service. It is a very quick and reliable service provider.
Fill in the config
file with the correct settings to use this driver. You can find these settings under your SMSgw account
return [
'driver' => 'smsgw',
'from' => 'Company A',
'smsgw' => [
'username' => 'Your username',
'password' => 'Your Password'
],
];
This driver sends and receives all messages through the Mobily.ws service.
Fill in the config
file with the correct settings to use this driver.
return [
'driver' => 'mobilyws',
'from' => 'Company A',
'mobilyws' => [
'username' => 'Your username',
'password' => 'Your Password'
],
];
This driver sends and receives all messages through the Call Fire service. It is a very quick and reliable service provider that includes many features such as drip campaigns and voice services.
Fill in the config
file with the correct settings to use this driver. You can find these settings under your CallFire account and then selecting API Access.
return [
'driver' => 'callfire',
'from' => 'Not Use For Call Fire',
'callfire' => [
'app_login' => 'Your App Login',
'app_password' => 'Your App Password'
],
];
The E-Mail driver sends all messages through the configured e-mail driver for Laravel. This driver uses the wireless carrier's e-mail gateways to send SMS messages to mobile phones. The biggest benefit to using the e-mail driver is that it is completely free to use.
The only setting for this driver is the from
setting. Simply enter an email address that you would like to send messages from.
return [
'driver' => 'email',
'from' => '[email protected]',
];
If messages are not being sent, ensure that you are able to send E-Mail through Laravel first.
The following are currently supported by using the e-mail gateway driver.
Country | Carrier | Carrier Prefix | SMS Supported | MMS Supported |
---|---|---|---|---|
USA | AT&T | att | Yes | Yes |
USA | Air Fire Mobile | airfiremobile | Yes | No |
USA | Alaska Communicates | alaskacommunicates | Yes | Yes |
USA | Ameritech | ameritech | Yes | No |
USA | Boost Mobile | moostmobile | Yes | Yes |
USA | Clear Talk | cleartalk | Yes | No |
USA | Cricket | cricket | Yes | No |
USA | Metro PCS | metropcs | Yes | Yes |
USA | NexTech | nextech | Yes | No |
USA | Project Fi | projectfi | Yes | Yes |
Canada | Rogers Wireless | rogerswireless | Yes | Yes |
USA | Unicel | unicel | Yes | Yes |
USA | Verizon Wireless | verizonwireless | Yes | Yes |
USA | Virgin Mobile | virginmobile | Yes | Yes |
USA | T-Mobile | tmobile | Yes | Yes |
USA | Sprint | sprint | Yes | Yes |
USA | US Cellular | uscellular | Yes | Yes |
You must know the wireless provider for the mobile phone to use this driver.
Careful! Not all wireless carriers support e-mail gateways around the world.
Some carriers slightly modify messages by adding the
from
andto
address to the SMS message.
This driver sends all messages through the EZTexting service. EZTexting has many different options that have proven to be reliable and fast.
Fill in the config
file with the correct settings to enable EZTexting.
return [
'driver' => 'eztexting',
'from' => 'Not Use For EZTexting',
'eztexting' => [
'username' => 'Your Username',
'password' => 'Your Password'
],
];
To enable receive()
for this service, you must visit the EZTexting settings page. Enable the Forwarding API
and Keyword API
for the messages that you would like forwarded to your web application.
Note: All messages from EZTexting come from the same short number (313131)
This driver sends all messages through the FlowRoute service.
Fill in the config
file with the correct settings to enable EZTexting.
return [
'driver' => 'flowroute',
'from' => 'Not Use For EZTexting',
'flowroute' => [
'access_key' => 'Your Access Key',
'secret_key' => 'Your Secret Key'
],
];
To enable receive()
for this service, you must visit the FlowRoute settings page. Enable the Forwarding API
and Keyword API
for the messages that you would like forwarded to your web application.
This driver sends all messages through the LabsMobile service. These settings can be found on your API Settings page.
return [
'driver' => 'labsmobile',
'from' => 'Sender',
'labsmobile' => [
'username' => 'Your Username',
'password' => 'Your Password',
]
];
The log driver is just a simple testing driver. This will log that a SMS message was sent in your storage/logs
folder.
return [
'driver' => 'log',
];
This driver sends all messages through the Mozeo service. These settings can be found on your API Settings page.
return [
'driver' => 'mozeo',
'from' => 'Not Used With Mozeo',
'mozeo' => [
'companyKey' => 'Your Company Key',
'username' => 'Your Username',
'password' => 'Your Password'
]
];
Note: All messages from Mozeo come from the same short number (24587)
This driver sends messages through the Nexmo messaging service. It is very reliable and capable of sending messages to mobile phones worldwide.
Check out the guide on choosing the correct encoding for your messages.
return [
'driver' => 'nexmo',
'from' => 'Company Name',
'nexmo' => [
'api_key' => 'Your Nexmo API Key',
'api_secret' => 'Your Nexmo API Secret',
'encoding' => 'unicode', // Can be `unicode` or `gsm`
]
];
To enable receive()
messages you must set up the request URL.
This driver sends messages through the Plivo messaging service.
return [
'driver' => 'plivo',
'from' => 'Company Name',
'plivo' => [
'auth_id' => 'Your Auth ID.',
'auth_token' => 'Your Auth Token.'
]
];
To enable receive()
messages you must set up the request URL.
This driver sends messages through the Twilio messaging service. It is very reliable and capable of sending messages to mobile phones worldwide.
return [
'driver' => 'twilio',
'from' => '+15555555555', //Your Twilio Number in E.164 Format.
'twilio' => [
'account_sid' => 'Your SID',
'auth_token' => 'Your Token',
'verify' => true, //Used to check if messages are really coming from Twilio.
]
];
This driver sends messages through the [Zenvia](http://www.zenvia.com.br/ messaging service which is a popular service in Brazil.
return [
'driver' => 'zenvia',
'from' => 'Your Number',
'zenvia' => [
'account_key' => 'Your Account Key.',
'passcode' => 'Your Passcode.'
'call_back_option' => 'The URL you wish to have receive messages sent to.'
]
];
This driver sends messages through the JustSend messaging service which is only avaliable in Poland.
return [
'driver' => 'justsend',
'from' => 'From text',
'justsend' => [
'api_key' => 'Your API Key.'
]
];
from
can be one of the following:
ECO
- cheapest type (about 0.03 PLN per SMS). SMS will be send from random short-code number.- One of:
INFO
,INFORMACJA
,KONKURS
,NOWOSC
,OFERTA
,OKAZJA
,PROMOCJA
,SMS
- about 0.06 PLN per SMS. - Any other text (can not be only number) - about 0.07 PLN per SMS.
Not all drivers support every method due to the differences in each individual API. The following table outlines what is supported for each driver.
| Driver | Send | Queue | CheckMessages | GetMessage | Receive | | --- | --- | --- | --- | --- | --- | --- | | Call Fire | Yes | Yes | Yes | Yes | No | | E-Mail | Yes | Yes | No | No | No | | EZTexting | Yes | Yes | Yes | Yes | Yes | | FlowRoute | Yes | Yes | Yes | Yes | Yes | | LabsMobile | Yes | Yes | No | No | No | | Log | Yes | Yes | No | No | No | | Mozeo | Yes | Yes | No | No | No | | Nexmo | Yes | Yes | Yes | Yes | Yes | | Plivo | Yes | Yes | Yes | Yes | Yes | | Twilio | Yes | Yes | Yes | Yes | Yes | | Zenvia | Yes | Yes | Yes | Yes | Yes | | JustSend | Yes | Yes | No | No | No |
Simple SMS operates in much of the same way as the Laravel Mail service provider. If you are familiar with this then SMS should feel like home. The most basic way to send a SMS is to use the following:
//Service Providers Example
SMS::send('Your SMS Message', null, function($sms) {
$sms->to('+15555555555');
});
//Service Providers Using A Laravel View
//$data is the information that will be passed onto the view file.
SMS::send('laravel::viewFile', $data, function($sms) {
$sms->to('+15555555555');
});
//Email Driver Example
SMS::send('Your SMS Message', null, function($sms) {
$sms->to('+15555555555', 'att');
});
The first parameter is the view file that you would like to use. The second is the data that you wish to pass to the view. The final parameter is a callback that will set all of the options on the message
closure.
The send
method sends the SMS through the configured driver using a Laravel view file.
SMS::send($view, Array $data, function($sms) {
$sms->to('+15555555555');
}
SMS::send('laravel::view', $data, function($sms) {
$sms->to('+15555555555');
});
It is possible to send a simple message without creating views by passing a string instead of a view.
SMS::send($message, [], function($sms) {
$sms->to('+15555555555');
}
SMS::send('This is my message', [], function($sms) {
$sms->to('+15555555555');
});
The driver
method will switch the provider during runtime.
//Will send through default provider set in the config file.
SMS::queue('Your SMS Message', $data, function($sms) {
$sms->to('+15555555555');
});
SMS::driver('twilio');
//Will send through Twilio
SMS::queue('Your SMS Message', $data, function($sms) {
$sms->to('+15555555555');
});
The queue
method queues a message to be sent later instead of sending the message instantly. This allows for faster respond times for the consumer by offloading uncustomary processing time. Like Laravel's Mail
system, queue also has queueOn,
later,
and laterOn
methods.
SMS::queue('Your SMS Message', $data, function($sms) {
$sms->to('+15555555555');
});
The
queue
method will fallback to thesend
method if a queue service is not configured withinLaravel.
Simple SMS supports push SMS messages. You must first configure this with your service provider by following the configuration settings above.
Route::post('sms/receive', function()
{
SMS::receive();
}
The receive method will return a IncomingMessage
instance. You may request any data off of this instance like:
Route::post('sms/receive', function()
{
$incoming = SMS::receive();
//Get the sender's number.
$incoming->from();
//Get the message sent.
$incoming->message();
//Get the to unique ID of the message
$incoming->id();
//Get the phone number the message was sent to
$incoming->to();
//Get the raw message
$incoming->raw();
}
The raw
method returns all of the data that a driver supports. This can be useful to get information that only certain service providers provide.
Route::post('sms/receive', function()
{
$incoming = SMS::receive();
//Twilio message status
echo $incoming->raw()['status'];
}
The above would return the status of the message on the Twilio driver.
Data used from the
raw
method will not work on other service providers. Each provider has different values that are sent out with each request.
This method will retrieve an array of messages from the service provider. Each message within the array will be an IncomingMessage
object.
$messages = SMS::checkMessages();
foreach ($messages as $message)
{
//Will display the message of each retrieve message.
echo $message->message();
}
The checkMessages
method supports has an options
variable to pass some settings onto each service provider. See each service providers API to see which options
may be passed.
More information about each service provider can be found at their API docs.
You are able to retrieve a message by it's ID with a simply call. This will return an IncomingMessage object.
$message = SMS::getMessage('aMessageId');
//Prints who the message came from.
echo $message->from();
The to
method adds a phone number that will have a message sent to it.
//Service Provider Example
SMS::send('Your SMS Message', $data, function($sms) {
$sms->to('+15555555555');
$sms->to('+14444444444');
});
The carrier is required for the email driver so that the correct email gateway can be used. See the table above for a list of accepted carriers.
The from
method will set the address from which the message is being sent.
SMS::send('Your SMS Message', $data, function($sms) {
$sms->from('+15555555555');
});
The attachImage
method will add an image to the message. This will also convert the message to a MMS because SMS does not support image attachments.
//Service Provider Driver
SMS::send('Your SMS Message', $data, function($sms) {
$sms->attachImage('/url/to/image.jpg');
});
Currently only supported with the E-Mail and Twilio Driver.
All incoming messages generate a IncomingMessage
object. This makes it easy to retrieve information from them in a uniformed way across multiple service providers.
The raw
method returns the raw data provided by a service provider.
$incoming = SMS::getMessage('messageId');
echo $incoming->raw()['status'];
Each service provider has different information in which they supply in their requests. See their documentations API for information on what you can get from a
raw
request.
This method returns the phone number in which a message came from.
$incoming = SMS::getMessage('messageId');
echo $incoming->from();
The to
method returns the phone number that a message was sent to.
$incoming = SMS::getMessage('messageId');
echo $incoming->to();