vemcogroup/laravel-smsapi

Laravel implementation to easy sent sms via SMSAPI

3.0 2022-02-17 13:59 UTC

This package is auto-updated.

Last update: 2024-04-17 18:42:31 UTC


README

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);