simpleweb/silverpopphp
Composer 安装命令:
composer require simpleweb/silverpopphp
包简介
Silverpop API in php
关键字:
README 文档
README
PHP client library for the Silverpop API.
Note. This project is not actively maintained. I suggest if it is useful, you fork your own version of it.
Pull requests that are non-breaking will be merged.
Installation
Installation via composer . Create a composer.json file in the root folder of you project and paste the code below.
{ "require": { "simpleweb/silverpopphp": "master-dev" } }
With composer installed, just run php composer.phar install or simply
composer install if you did a global install.
Usage
<?php // Include the library require_once 'vendor/autoload.php'; // Require the Silverpop Namespace use Silverpop\EngagePod; // Set some useful variables $databaseID = 'XXX'; $templateID = 'XXX'; $contactsList = 'XXX'; // Initialize the library $silverpop = new EngagePod(array( 'username' => 'XXX', 'password' => 'XXX', 'engage_server' => 4, )); // Fetch all contact lists $lists = $silverpop->GetLists(18); var_dump($lists); // Add a record to a contact $recipientID = $silverpop->addContact( $databaseID, true, array( 'name' => 'christos', 'email' => 'chris@simpleweb.co.uk', ) ); echo $recipientID; // Create a new mailing and send in 1 minute $mailingID = $silverpop->sendEmail( $templateID, $databaseID, 'API Mailing Test - ' . date("d/m/Y H:i:s", time()), time() + 60, ); echo $mailingID;
统计信息
- 总下载量: 110.22k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 35
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL
- 更新时间: 2013-05-01