kombyte/meta-whatsapp-api

Access to Whatsapp cloud api (meta)

v0.3.1 2024-04-06 23:20 UTC

This package is auto-updated.

Last update: 2024-05-06 23:32:57 UTC


README

Call meta api

Installation

composer require kombyte/meta-whatsapp-api
use Kombyte\Whatsapp\Api;
use Kombyte\Whatsapp\Messages;

Usage

Create new Messages instance with Api

$messages = new Messages(new Api($yourToken));

Send messages

Add destination

$messages->to('phone number')
    ->sendText('Hello');