pro-sales/laravel-websms

This package is abandoned and no longer maintained. No replacement package was suggested.

A simple package to send sms messages using the websms.com apiii.

1.0.5 2019-09-25 16:17 UTC

This package is auto-updated.

Last update: 2023-02-26 01:08:35 UTC


README

Please note that WhatsApp messages are currently not supported.

Usage

Step 1

Install the package

composer require pro-sales/laravel-websms

Step 2

Publish the config file

php artisan vendor:publish --provider="ProSales\WebSms\WebSmsServiceProvider"

Don't forget to update the access token in the config!

Step 3

Send your first message:

WebSms::smsMessage()
        ->to("+41791234567")
        ->text("Hallo von Laravel")
        ->send();