All Projects → mul14 → Zenziva.php

mul14 / Zenziva.php

Licence: mit
Zenziva - Indonesia Online SMS Gateway Library

Projects that are alternatives of or similar to Zenziva.php

Notifme Sdk
A Node.js library to send all kinds of transactional notifications.
Stars: ✭ 1,854 (+5518.18%)
Mutual labels:  sms, notification
laravel-sms-api
Laravel package to provide SMS API integration.
Stars: ✭ 84 (+154.55%)
Mutual labels:  sms, laravel-package
Nexmo Laravel
Add Nexmo functionality such as SMS and voice calling to your Laravel app with this Laravel Service Provider.
Stars: ✭ 250 (+657.58%)
Mutual labels:  laravel-package, sms
fake-sms-notifier
Fake SMS (as email during development) Notifier Bridge
Stars: ✭ 16 (-51.52%)
Mutual labels:  sms, notification
ohd
Garage Door Monitor (OverHeadDoor) - Python3, Raspbian
Stars: ✭ 126 (+281.82%)
Mutual labels:  sms, notification
laravel-sms
Package for sending SMS from your Laravel app / Пакет для отправки смс из вашего приложения Laravel
Stars: ✭ 21 (-36.36%)
Mutual labels:  sms, notification
Blade Migrations Laravel
An intelligent alternative version of Laravel 5/6 Database Migrations - uses raw-sql syntax, transactions, auto-rollback, UP-DOWN-UP testing
Stars: ✭ 25 (-24.24%)
Mutual labels:  laravel-package
Africastalking Java
Official Java SDK
Stars: ✭ 27 (-18.18%)
Mutual labels:  sms
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (-27.27%)
Mutual labels:  notification
Laravel Aws Sns
Laravel package for the AWS SNS Events
Stars: ✭ 24 (-27.27%)
Mutual labels:  laravel-package
Laravel Database Logger
Log database query sql in Laravel Application, support Guard,Auth to multiple file record
Stars: ✭ 31 (-6.06%)
Mutual labels:  laravel-package
Fredy
❤️ Fredy - [F]ind [R]eal [E]states [D]amn Eas[y] - Let the robot do the work...
Stars: ✭ 29 (-12.12%)
Mutual labels:  notification
Chatify
A Laravel package that allows you to add a complete user messaging system into your new/existing Laravel application.
Stars: ✭ 885 (+2581.82%)
Mutual labels:  laravel-package
Notifyjs
Stars: ✭ 26 (-21.21%)
Mutual labels:  notification
Gcnotificationview
Simplest notification alert view for iOS
Stars: ✭ 27 (-18.18%)
Mutual labels:  notification
Yii2 Slack Log
Pretty Slack log target for Yii 2
Stars: ✭ 24 (-27.27%)
Mutual labels:  notification
Telegram Notifier
Provides Telegram integration for Symfony Notifier.
Stars: ✭ 30 (-9.09%)
Mutual labels:  notification
Notification
notification with socket.io
Stars: ✭ 24 (-27.27%)
Mutual labels:  notification
Laravel Mailguneu
Allow customising the Mailgun server URL to use EU servers.
Stars: ✭ 13 (-60.61%)
Mutual labels:  laravel-package
Queryfilter
Laravel queryfilter is a simple & dynamic package for your eloquent query in laravel. It will help you to write query logic individual for each parameter.
Stars: ✭ 28 (-15.15%)
Mutual labels:  laravel-package

Zenziva Client for PHP - v2

This is v2, for previous version please check 1.x branch.

Zenziva provide services to send SMS, WhatsApp, and voice message.

If this library not working for you, or you found any kind of bugs, please create a new issue.

Install

Run composer

composer require nasution/zenziva

Usage

Make sure you already have Zenziva account.

// Regular

require 'vendor/autoload.php';

use Nasution\Zenziva\Zenziva;

$zenziva = new Zenziva('userkey', 'passkey');

// SMS
$zenziva->sms('0812223333', 'Halo');

// WhatsApp
$zenziva->wa('6285551111', 'Halo');

// Voice message
$zenziva->voice('0812223333', 'Halo');
// SMS Masking
$zenziva = new Zenziva('userkey', 'passkey', [
    'masking' => true,
]);

$zenziva->sms('0812223333', 'Halo');
// Zenziva Sms Center
$zenziva = new Zenziva('userkey', 'passkey', [
    'domain' => 'domain_name.com',
]);

$zenziva->sms('0812223333', 'Halo');
// Zenziva WhatsApp Center
$zenziva = new Zenziva('userkey', 'passkey', [
    'domain' => 'domain_name.com',
    'whatsapp_id' => 'whatsapp_id',
]);

$zenziva->wa('6285551111', 'Halo');
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].