PHP code example of lucasnpinheiro / whatsapp

1. Go to this page and download the library: Download lucasnpinheiro/whatsapp library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lucasnpinheiro / whatsapp example snippets




hatsapp\WhatsAppTemplateSender;

$token = 'YOUR_ACCESS_TOKEN'; // Informe o token de autenticação
$phoneNumberId = 'YOUR_PHONE_NUMBER_ID'; // Informe o ID do número de telefone vinculado a sua conta do WhatsApp Business API
$to = 'RECIPIENT_PHONE_NUMBER'; // Informe o número de telefone do destinatário no formato internacional
$templateName = 'hello_world'; // Nome do template que deseja usar
$languageCode = 'en_US'; // Código de idioma do template
$components = []; // Componentes adicionais do template, se houver

$whatsappSender = new WhatsAppTemplateSender($token, $phoneNumberId);
$response = $whatsappSender->sendTemplateMessage($to, $templateName, $languageCode, $components);

echo $response;



hatsapp\WhatsAppTemplateSender;

$token = 'YOUR_ACCESS_TOKEN'; // Informe o token de autenticação
$phoneNumberId = 'YOUR_PHONE_NUMBER_ID'; // Informe o ID do número de telefone vinculado a sua conta do WhatsApp Business API
$to = 'RECIPIENT_PHONE_NUMBER'; // Informe o número de telefone do destinatário no formato internacional

$whatsappSender = new WhatsAppTemplateSender($token, $phoneNumberId);
$response = $whatsappSender->helloWorld($to);

echo $response;