Skip to content

This package allows you to quickly send SMS in Laravel via the SMSAPI service.

License

Notifications You must be signed in to change notification settings

vemcogroup/laravel-smsapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel SmsApi

Latest Version on Packagist Total Downloads

Description

This package allows you to quickly send SMS in Laravel via the SMSAPI service.

This is first version and only support to send SMS.

Further versions will support more of SMSAPI features.

Remember to register an account at SMSAPI before using this package.

Installation

You can install the package via composer:

composer require vemcogroup/laravel-smsapi

The package will automatically register its service provider.

To publish the config file to config/translation.php run:

php artisan vendor:publish --provider="Vemcogroup\SmsApi\SmsApiServiceProvider"

This is the default contents of the configuration:

return [

    /*
        |--------------------------------------------------------------------------
        | Token
        |--------------------------------------------------------------------------
        |
        | Here you define your API TOKEN for smsapi
        |
        | More info: https://www.smsapi.com/docs/#authentication
        |
        */
    
        'token' => env('SMSAPI_TOKEN'),
];

Usage

You are now able to send sms with this code

use Vemcogroup\SmsApi\SmsApi;

SmsApi::send($to, $from, $message);

About

This package allows you to quickly send SMS in Laravel via the SMSAPI service.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages