Giter Site home page Giter Site logo

dinushchathurya / websmslk Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 0.0 28 KB

This package allows you to send sms to multiple numbers at once using websms.lk API

Home Page: https://packagist.org/packages/dinushchathurya/websmslk

License: MIT License

PHP 100.00%
dinush dinush-chathurya dinushchathurya sms sri-lanka srilanka websms smslk websmslk open-source open-source-srilanka

websmslk's Introduction

Scrutinizer build (GitHub/Bitbucket) Scrutinizer code quality (GitHub/Bitbucket)

Laravel Package to send sms using websms.lk SMS Gateway

This package allows you to send sms to multiple numbers at once using websms.lk API



Table of Contents

  1. Installation
  2. Publish the config file
  3. .env config
  4. Usage
  5. Contributing
  6. Author
  7. License

Installation

composer require dinushchathurya/websmslk

Publish the config file

php artisan vendor:publish --provider="Dinushchathurya\Websms\SmsServiceProvider"

Add the following to your .env file

SMS_API_KEY=<your-api-key>
SMS_API_TOKEN=<your-api-token>
SMS_SENDER_ID=<your-sender-id>
SMS_TYPE= sms
SMS_ROUTE=0

For more information about the above parameters, please visit websms.lk

Usage

This is a simple example of how to send SMS using this package.

use Dinushchathurya\Websms\Sms;

public function sendSms()
{
  try {
    $numbers      = ['9476xxxxxx','9471xxxxxxx'];
    $message      = "ආයුබෝවන්. සාදරයෙන් පිළිගනිමු";
    $scheduledate = Carbon::now()->toDateTimeString();
    Sms::send($numbers, $message, $scheduledate);                     
    return response()->json([
      'message' => 'SMS sent successfully'
    ]);  
  } catch (\Exception $e) {
      return response()->json([
        'message' => 'An error occurred while sending SMS: ' . $e->getMessage()
      ], 500);
  }
}
Route::get('/send-sms', [App\Http\Controllers\SmsController::class, 'sendSms'])->name('send-sms');

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Author

Author Dinush Chathurya

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Copyright (c) 2023 Dinush Chathurya, Open Source SriLanka and codingtricks.io

websmslk's People

Contributors

dinushchathurya avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.