Releases: nguyenanhung/omnisend
Releases · nguyenanhung/omnisend
Release version 2.0.1
What's Changed
- Update README.md by @nguyenanhung in #1
New Contributors
- @nguyenanhung made their first contribution in #1
Full Changelog: v2.0.0...v2.0.1
Release version 2.0.0
-
v2.x
Support all PHP Version>=7.0
Release version 1.0.3
-
v1.x
Support all PHP Version>=5.6
Release version 1.0.2
- Add GitHub Action Workflows
- Hiện tại, thư viện hỗ trợ các phiên bản PHP:
^PHP 7.1 || ^PHP 8.0
. - Optimize code để tối ưu khả năng tương thích và tốc độ với PHP 7 trở lên
Release version 1.0.1
- Update LICENSE
Release version 1.0.0
Omnisend
Omnisend: Ecommerce Email Marketing and SMS Platform
Installation
Simple installation with Composer
composer require nguyenanhung/omnisend
Example
<?php
/**
* Project omnisend
* Created by PhpStorm
* User: 713uk13m <[email protected]>
* Copyright: 713uk13m <[email protected]>
* Date: 09/09/2021
* Time: 10:32
*/
use nguyenanhung\Omnisend\Services\Omnisend;
require_once __DIR__ . 'vendor/autoload.php';
$options = [
'debugStatus' => true,
'debugLevel' => null,
'loggerPath' => '/tmp',
];
$apiKey = 'xxx';
$omnisend = new Omnisend($options);
$omnisend->setApiKey($apiKey);
// Example Request Events
$params = [
'eventId' => 'xxx'
];
$body = [
'email' => '[email protected]',
'fields' => 'abc'
];
$result = $omnisend->withPostRequest()->events($body);
echo "<pre>";
print_r($result);
echo "</pre>";
See more at: https://github.com/nguyenanhung/omnisend/tree/main/example
Contact
If any question & request, please contact following information
Name | Skype | ||
---|---|---|---|
Hung Nguyen | [email protected] | nguyenanhung5891 | @nguyenanhung |
From Hanoi with Love <3