TIP
Looking for an SMS provider? Check out CompareSMS (opens new window) and find the best SMS provider for you
# Smspoh Notifications Channel for Laravel
(opens new window) (opens new window) (opens new window) (opens new window)
This package makes it easy to send notifications using SmsPoh (opens new window) with Laravel and 9.x and 10.x.
# Contents
# Installation
You can install this package via composer:
composer require laravel-notification-channels/smspoh
# Setting up the Smspoh service
Add your Smspoh token, default sender name (or phone number) to your config/services.php:
// config/services.php
...
'smspoh' => [
'endpoint' => env('SMSPOH_ENDPOINT', 'https://smspoh.com/api/v2/send'),
'token' => env('SMSPOH_TOKEN', 'YOUR SMSPOH TOKEN HERE'),
'sender' => env('SMSPOH_SENDER', 'YOUR SMSPOH SENDER HERE')
],
...
# Usage
You can use the channel in your via() method inside the notification:
use Illuminate\Notifications\Notification;
use NotificationChannels\Smspoh\SmspohMessage;
class AccountApproved extends Notification
{
public function via($notifiable)
{
return ["smspoh"];
}
public function toSmspoh($notifiable)
{
return (new SmspohMessage)->content("Your account was approved!");
}
}
In your notifiable model, make sure to include a routeNotificationForSmspoh() method, which returns a phone number or an array of phone numbers.
public function routeNotificationForSmspoh()
{
return $this->phone;
}
# On-Demand Notifications
Sometimes you may need to send a notification to someone who is not stored as a "user" of your application. Using the Notification::route method, you may specify ad-hoc notification routing information before sending the notification:
Notification::route('smspoh', '5555555555')
->notify(new InvoicePaid($invoice));
# Available Message methods
sender()
: Sets the sender's name. Make sure to register the sender name at you SmsPoh dashboard.
content()
: Set a content of the notification message. This parameter should be no longer than 918 char(6 message parts),
test()
: Send a test message to specific mobile number or not. This parameter should be boolean and default value is true
.
# Testing
$ composer test
# Changelog
Please see CHANGELOG (opens new window) for more information what has changed recently.
# Contributing
Please see CONTRIBUTING (opens new window) for details.
# Security Vulnerabilities
Please review our security policy (opens new window) on how to report security vulnerabilities.
# Credits
# License
The MIT License (MIT). Please see License File (opens new window) for more information.