desenlike/sendtudophp 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

desenlike/sendtudophp

最新稳定版本:0.0.1

Composer 安装命令:

composer require desenlike/sendtudophp

包简介

PHP Package to send Whatsapp messages via SendTudo

README 文档

README

PHP Package to send Whatsapp messages via SendTudo

Install

  composer require desenlike/sendtudophp

Send Message Example:

Simple Message Example:

use Desenlike\\Sendtudophp\\SendWhatsappMessage;

$sendWhatsappMessage = new SendWhatsappMessage("your-private-key", "your-public-key");

$to = '99999999999'; // recipient Whatsapp number
$message = 'your message'; 

// the sendMessage method returns boolean value
$returnData = $sendWhatsappMessage->sendMessage($to, $message);

Example of Message Using Template created in http://web.sendtudo.com.br:

use Desenlike\\Sendtudophp\\SendWhatsappMessage;

$sendWhatsappMessage = new SendWhatsappMessage("your-private-key", "your-public-key");

$to = '99999999999'; // recipient Whatsapp number
$templateId = 'id-of-the-template'; 

// custom params to replace variables created in the template
$customParams = [
    "name" => "John",
    "age" => 20,
    ...
];
// the sendTemplateMessage method returns boolean value
$sendWhatsappMessage->sendTemplateMessage($to, $templateId, $customParams);

Author

  • Érick Nilson Souza Sodré Filho (Desenlike)

License

  • MIT

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-10-27