gemblue / woowa
Woowa PHP Library
0.1.1
2020-08-30 11:20 UTC
Requires
- php: ^7.0
Requires (Dev)
- doctrine/coding-standard: ^8.1
This package is not auto-updated.
Last update: 2024-12-17 07:48:54 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';
}