henset11/onesender-laravel

OneSender integration for Laravel

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/henset11/onesender-laravel

dev-main 2024-12-23 15:07 UTC

This package is auto-updated.

Last update: 2025-09-23 16:36:50 UTC


README

How to install:
composer require henset11/onesender-laravel

Publish config:
php artisan vendor:publish --tag=onesender-config

How to use:
Send text
OneSender::text($number, $message, $recipientType)
OneSender::text('08123456789', 'Hello', 'individual')

Send Image
OneSender::image($phone, $imageUrl, $caption, $recipientType)

Send Document
OneSender::document($phone, $documentUrl, $filename, $caption, $recipientType)

you can change recipientType to 'individual' or 'group'