gemblue/woowa

Woowa PHP Library

0.1.1 2020-08-30 11:20 UTC

This package is not auto-updated.

Last update: 2024-05-21 05:02:00 UTC


README

Simple Woowa Wrapper API. Woowa is popular platform to send Whatsapp message ☎️ https://woo-wa.com/

How to use

Download the package with composer

composer require gemblue/woowa

Then, consume the library and send message

<?php

use Gemblue\Woowa\Woowa;

$Woowa = new Woowa;

$Woowa->setup([
    'sender' => '{senderphonenumber}',
    'domain' => '{domain}',
    'license' => '{license}',
    'ip' => 'http://116.203.92.59',
    'key' => '{key}'
]);

$send = $Woowa->sendMessage('+62777777', 'Pesan ini adalah pesan percobaan dari library gemblue/woowa');

if ($send) {
    echo 'Pesan terkirim';
}