pro-cms / whatsappcloud-php

Opensource php wrapper to WhatsApp Cloud API.
MIT License
75 stars 22 forks source link

Add parameters to sendTemplate method #13

Closed rupadana closed 11 months ago

rupadana commented 12 months ago

Adding parameters to sendTemplate method

Sample

$tsap->sendTemplate('template_name', '6283xxxxxx', 'en_US', [ "Hello World", ]);

equivalent to

$tsap->sendTemplate('template_name', '6283xxxxxx', 'en_US', [ [ "type" => "text", "text" => "Hello World" ], ]);