Download the PHP package flickerleap/clickatell without Composer
On this page you can find all versions of the php package flickerleap/clickatell. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download flickerleap/clickatell
More information about flickerleap/clickatell
Files in flickerleap/clickatell
Package clickatell
Short Description Laravel Notification integration for Clickatell
License MIT
Informations about the package clickatell
Clickatell notifications channel
This package implements Clickatell as a Laravel notification channel.
We drew a lot of inspiration from laravel-notification-channels/clickatell
Contents
- Installation
- .env
- Publish
- Configuration
- Default to
- Tracking
- Callback
- Usage
- Notifiable
- Notification
- To
- Call
- Testing
- Tests
- Credits
Installation
.env
Publish
Configuration
Default to
CLICKATELL_FIELD
- The default field to use for theto
if therouteNotificationForClickatell()
method is not implemented on the notifiable class.
Tracking
Optional tracking logs the send status from Clickatell. php artisan migrate
needs to be run once enabled.
CLICKATELL_TRACK
- Tracking true of false.CLICKATELL_TRACKING_TABLE
- Optional table name for tracking.
Callback
Optionally, with delivery notifications enabled, set the credentials and URL here. Tracking needs to be enabled. A value of /clickatellCallback
would be accessed at https://mysite.com/clickatellCallback
CLICKATELL_CALLBACK_URL
- Callback URL for message delivery updates.CLICKATELL_USERNAME
- Callback credentials.CLICKATELL_PASSWORD
- Callback credentials.
Usage
Notifiable
Notification
To
Optionally the to
field can be dynamically changed per call by specifying ->to()
Call
Testing
If APP_ENV
is set to local, laravel log entries will be created.
Tests
TODO
Credits
- laravel-notification-channels
- etiennemarais
- arcturial
- For the Clickatell Client implementation which is leveraged on this package.