msg91/campaign

官方PHP包,用于集成MSG91 API以发送短信、电子邮件、语音和WhatsApp通信。易于安装和集成,可运行营销活动、事务更新等。

v1.0.0.3 2022-07-05 03:16 UTC

This package is auto-updated.

Last update: 2024-09-22 14:45:48 UTC


README

require_once __DIR__ . '/vendor/autoload.php';

$client = new \Msg91\Campaign\Client('MSG91-AUTH-KEY');

$campaignList = $client->getCampaigns();

$campaignSlug = "demo";

$campaignFields = $client->getFields($campaignSlug);

$requestBody = $client->getRequestBody($campaignSlug);

$response = $client->runCampaign($campaignSlug, $requestBody);