laravel-bulksms maintained by nikba
Description
A Laravel package to send SMS using BulkSMS API
Author
Last update
2024/07/30 21:06
(dev-main)
License
Downloads
14
Laravel BulkSMS Package
This package allows you to send SMS messages using the BulkSMS API in your Laravel application.
Installation
composer require nikba/laravel-bulksms
Configuration
Publish the configuration file:
php artisan vendor:publish --provider="Nikba\BulkSms\BulkSmsServiceProvider"
Add your BulkSMS API key to your .env file:
BULKSMS_API_KEY=your_api_key_here
Usage
Use the BulkSms facade to send messages:
use Nikba\BulkSms\Facades\BulkSms;
BulkSms::sendMessage('1234567890', 'Hello World');