All Projects → hizbul25 → onnorokom-sms

hizbul25 / onnorokom-sms

Licence: other
Laravel 5.* package for Sending SMS using OnnoRokom SMS service.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to onnorokom-sms

laravelbdsms
Xenon\LaravelBDSms is a sms gateway package for sending text message to Bangladeshi mobile numbers using several gateways like sslcommerz, greenweb, dianahost, metronet,boomcast, bulksmsbd, banglalink from Laravel framework
Stars: ✭ 68 (+223.81%)
Mutual labels:  sms, onnorokom-sms-service
Andspoilt
Run interactive android exploits in linux.
Stars: ✭ 101 (+380.95%)
Mutual labels:  sms
Nekosms
A pattern-based text message blocker for Android.
Stars: ✭ 206 (+880.95%)
Mutual labels:  sms
plivo
This package enables to send message or OTP to any mobile.This package uses external plivo api.
Stars: ✭ 20 (-4.76%)
Mutual labels:  sms
Easy Sms
📲 一款满足你的多种发送需求的短信发送组件
Stars: ✭ 2,646 (+12500%)
Mutual labels:  sms
BulkSMSSender
Bulk SMS Sender is a small and powerful open source android application that enables users to send generic and customized SMS messages through their carrier network to contacts that are listed in a Text input file.
Stars: ✭ 55 (+161.9%)
Mutual labels:  sms
Vonage Ruby Sdk
Vonage REST API client for Ruby. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 203 (+866.67%)
Mutual labels:  sms
mailslurp-client
Official MailSlurp Client
Stars: ✭ 33 (+57.14%)
Mutual labels:  sms
PySMS
Simple Python API that that allows you to send texts via SMTP with a best effort approach and process replies via IMAP
Stars: ✭ 19 (-9.52%)
Mutual labels:  sms
SmsForwarder
短信转发器——监控Android手机短信、来电、APP通知,并根据指定规则转发到其他手机:钉钉群自定义机器人、钉钉企业内机器人、企业微信群机器人、飞书机器人、企业微信应用消息、邮箱、bark、webhook、Telegram机器人、Server酱、PushPlus、手机短信等。包括主动控制服务端与客户端,让你轻松远程发短信、查短信、查通话、查话簿、查电量等。(V3.0 新增)PS.这个APK主要是学习与自用,如有BUG请提ISSUE,同时欢迎大家提PR指正
Stars: ✭ 8,386 (+39833.33%)
Mutual labels:  sms
sms
Student Management System With Php
Stars: ✭ 26 (+23.81%)
Mutual labels:  sms
Moriarty Project
This tool gives information about the phone number that you entered.
Stars: ✭ 223 (+961.9%)
Mutual labels:  sms
hasura-auth
Authentication for Hasura.
Stars: ✭ 276 (+1214.29%)
Mutual labels:  sms
Django Sendsms
A simple API to send SMS messages. It is modeled after the django email api.
Stars: ✭ 208 (+890.48%)
Mutual labels:  sms
MockSMS
Android application to create/craft fake sms.
Stars: ✭ 63 (+200%)
Mutual labels:  sms
Ssm Env
Expand env variables from AWS Parameter Store
Stars: ✭ 205 (+876.19%)
Mutual labels:  sms
advancedSmsManager
Advanced SmsManager is avery handy library for sending sms for single and two sim-card phones with many options.
Stars: ✭ 27 (+28.57%)
Mutual labels:  sms
apostello
sms for your church
Stars: ✭ 62 (+195.24%)
Mutual labels:  sms
sms
A Go library for encoding and decoding SMSs
Stars: ✭ 37 (+76.19%)
Mutual labels:  sms
Kalkun
Open Source Web based SMS Manager
Stars: ✭ 186 (+785.71%)
Mutual labels:  sms

OnnoRokom SMS for Laravel 5., 6., 7.* and 8.*

Installation

The OnnoRokom SMS Service Provider can be installed via Composer by requiring the hizbul/onnorokom-sms package and setting the minimum-stability to dev (required for Laravel 5.*) in your project's composer.json.

{
    "require": {
        "hizbul/onnorokom-sms": "dev-master",
    },
}

or

Require this package with composer:

composer require hizbul/onnorokom-sms

Update your packages with composer update or install with composer install.

Usage

To use the OnnoRokom SMS Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.

Find the providers key in config/app.php and register the OnnoRokom SMS Service Provider.

    'providers' => [
        // ...
        Hizbul\OnnorokomSms\OnnorokomSmsServiceProvider::class,
    ]

Find the aliases key in config/app.php.

    'aliases' => [
        // ...
        'OnnoRokomSMS' => Hizbul\OnnorokomSms\Facades\OnnoRokomSMS::class,
    ]

Configuration

To use your own settings, publish config.

$ php artisan vendor:publish --provider="Hizbul\OnnorokomSms\OnnorokomSmsServiceProvider"

Sending a text message One to One:

    onnorokom_sms(['message' => 'some text msg', 'mobile_number' => '01918....']);

Sending text message One to Many (Bulk):

    onnorokom_sms(['message' => 'some text msg', 'mobile_number' => ['01918....', '0171....']]);

Based on OnnoRokom SMS Service

^_^

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].