PHPackages                             epmnzava/bulksms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. epmnzava/bulksms

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

epmnzava/bulksms
================

Package wrapper for bulksms.com to be used by laravel developers

1.0.8(2y ago)11.6k1MITPHPPHP ^7.1|^7.2|^7.3|^7.4|^8.0|^8.1

Since Mar 15Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dbrax/bulksms)[ Packagist](https://packagist.org/packages/epmnzava/bulksms)[ Docs](https://github.com/epmnzava/bulksms)[ RSS](/packages/epmnzava-bulksms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (3)Versions (8)Used By (0)

BULKSMS.COM API PACKAGE WRAPPER
===============================

[](#bulksmscom-api-package-wrapper)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ea7fde7b7ef7a8c570a56ea4aee9309645a36472c20a2a87647b4489b5ab019b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65706d6e7a6176612f62756c6b736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/epmnzava/bulksms)[![Quality Score](https://camo.githubusercontent.com/60298f5b39f7613d5429bd328d52e8f481d63c04b97d1590278b21505b6c2549/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f64627261782f62756c6b736d732e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/epmnzava/bulksms)[![Total Downloads](https://camo.githubusercontent.com/b2d227b544da6c0c7966917e934e766d93c1e0780abd5a4774fea7ee105d999b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65706d6e7a6176612f62756c6b736d732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/epmnzava/bulksms)

A package api wrapper for bulksms.com mainly developed to be used and resued by php and laravel developers

Installation
============

[](#installation)

- Laravel Version: ˆ7.2 ==&gt; ^9.0
- PHP Version: ^7.1|^7.2|^7.3|^7.4|^8.0

You can install the package via composer:

```
composer require epmnzava/bulksms
```

Update your config (for Laravel 5.4 and below)
==============================================

[](#update-your-config-for-laravel-54-and-below)

Add the service provider to the providers array in config/app.php:

```
Epmnzava\Bulksms\BulksmsServiceProvider::class,

```

Add the facade to the aliases array in config/app.php:

```
'BulkSms'=>Epmnzava\Bulksms\BulksmsFacade::class,

```

Publish the package configuration (for Laravel 5.4 and below)
=============================================================

[](#publish-the-package-configuration-for-laravel-54-and-below)

Publish the configuration file and migrations by running the provided console command:

```
php artisan vendor:publish --provider="Epmnzava\Bulksms\BulksmsServiceProvider"

```

### Environmental Variables

[](#environmental-variables)

BULKSMS\_SENDERID `Provide your desired sender id `

BULKSMS\_SECRET `Provide your bulksms token secret`

BULKSMS\_ID `Provide your bulksms token id`

Usage
=====

[](#usage)

Send a simple text
------------------

[](#send-a-simple-text)

```
