Download the PHP package laravel-notification-channels/sms77 without Composer
On this page you can find all versions of the php package laravel-notification-channels/sms77. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download laravel-notification-channels/sms77
More information about laravel-notification-channels/sms77
Files in laravel-notification-channels/sms77
Package sms77
Short Description SMS77 Notifications Channel for Laravel
License MIT
Homepage https://github.com/laravel-notification-channels/sms77
Informations about the package sms77
Seven.io (formerly SMS77) notifications channel for Laravel
This package makes it easy to send notifications using Seven.io (formerly SMS77) with Laravel.
Contents
- Installation
- Setting up the Seven.io service
- Usage
- Available Message methods
- Changelog
- Testing
- Security
- Contributing
- Credits
- License
Installation
This package can be installed via composer:
Setting up the SMS77 service
-
Create an account and get the API key here
- Add the API key to the
services.php
config file:
Usage
You can use this channel by adding SMS77Channel::class
to the array in the via()
method of your notification class. You need to add the toSms77()
method which should return a new SMS77Message()
object.
Available Message methods
getPayloadValue($key)
: Returns payload value for a given key.content(string $message)
: Sets SMS message text.to(string $number)
: Set recipients number.from(string $from)
: Set senders name.delay(string $timestamp)
: Delays message to given timestamp.noReload()
: Disables reload lock.debug()
: Enables debug mode.unicode()
: Sets message encoding to unicode.flash()
: Sends SMS as flash message.
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
- Maximilian Schöll
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of sms77 with dependencies
guzzlehttp/guzzle Version ^7.1
illuminate/notifications Version ^10.0 || ^11.0
illuminate/support Version ^10.0 || ^11.0