A wrapper for Twilio SMS notification for Laravel
carropublic/laraveltwilio is a Laravel package for a wrapper for twilio sms notification for laravel.
It currently has 2 GitHub stars and 131.223 downloads on Packagist (latest version 6.0.1-beta).
Install it with composer require carropublic/laraveltwilio.
Discover more Laravel packages by carropublic
or browse all Laravel packages to compare alternatives.
Last updated
A wrapper for Twilio SMS notification for Laravel. Take a look at contributing.md to see a to do list.
Via Composer
$ composer require carropublic/laraveltwilio
Run the following vendor publish to publish Twillo config.
php artisan vendor:publish --tag=laraveltwilio.config
Update your .env for Twilio config in order to send out the SMS notification.
The following is the example usage of the package with Laravel's Notification.
class ExampleNotification extends Notification
{
// Which channel this notification should be sent to
public function via($notifiable)
{
return [ SMSChannel::class, WhatsAppChannel::class ];
}
// Notification payload (content) will be sent
public function toSMS($notifiable)
{
return new LaravelTwilioMessage("Message Content");
}
// Notification payload (content) will be sent
public function toWhatsApp($notifiable)
{
return new LaravelTwilioMessage("Message Content");
}
}
class Contact extends Model {
use Notifiable;
// Phone number to receive
public function routeNotificationForSms()
{
return $this->phone;
}
// Phone number to receive
public function routeNotificationForWhatsapp()
{
return $this->phone;
}
}
$contact->notify(new ExampleNotification());
Notification::route('sms')->notify(new ExampleNotification());
When using webhook, you can validate the incoming request is from Twilio. $token is config('laraveltwilio.auth_token'). We are not using directly
becuase it might be dynamic.
use CarroPublic\LaravelTwilio\Request\ValidateTwilioIncomingRequestSignature;
ValidateSignatureOfRequest::isValidRequest($token, $request);
\CarroPublic\LaravelTwilio\LaravelTwilioManager::registerTestingValidatorExample:
LaravelTwilioManager::registerSandboxValidator(function () {
return !is_production();
});
TWILIO_TESTING_ENABLE to determine if running in sandbox mode. Default false\CarroPublic\LaravelTwilio\LaravelTwilioSender::registerValidPhoneForSandboxExample:
LaravelTwilioSender::registerValidPhoneForSandbox(function ($phoneNumber) {
return $phoneNumber == "+84111111111";
}
Please see the changelog for more information on what has changed recently.
$ composer test
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
Please see the license file for more information.