pranasucitra / whatsapp-gateway-services
dev-main
2025-01-07 18:50 UTC
Requires
- giggsey/libphonenumber-for-php: 8.9.9
- guzzlehttp/guzzle: v7.5.0
This package is auto-updated.
Last update: 2025-08-07 13:39:52 UTC
README
Module for sending WhatsApp notifications using a WhatsApp gateway service with HTTP. This module is created for the CodeIgniter framework or OOP PHP to send notifications via the WhatsApp service using POST data.”
Requirment
- composer
- nodeJs
- php-7.4 keatas
- Whatsapp that has been installed on your cellphone for the scanning process
How to Install
You need the composer package to install this program, if you don't have composer please download and install it at https://getcomposer.org/
composer require pranasucitra/whatsapp-gateway-services:dev-main
Usage Examples
The following is an example of use in PHP
/* ------------------------ First Example ----------------------- */
use pranasucitra\WhatsappGatewayServices\WhatsAppSG;
$wa = new WhatsAppSG();
$wa->setPort('6789')
->setSenderPhone('081395250814')
->setRecepient('085xxxxxxxxx')
->setMessage('test send wa?');
var_dump($wa->SendText());
/**
* if you use a number outside Indonesia
* You can set the locale in the following way
*
* Note:
* see alpha-2-code country codes in the following link
* https://www.iban.com/country-codes
*/
$wa = new WhatsAppSG();
$wa->setPort('6789')
->setLocale('US')
->setSenderPhone('081395250814')
->setRecepient('085xxxxxxxxx')
->setMessage('test send wa?');
var_dump($wa->SendText());
/* ------------------------- Second Example ------------------------ */
$wa = new WhatsAppSG('085xxxxxxxxx', 'Hello, try sending this on whatsapp');
$wa->setBaseUrl('http://127.0.0.1')
->setPort('6789')
->setSenderPhone('081395250814');
$result = $wa->SendText();