billyct / laravel-elastic-email
There is no license information available for the latest version (dev-master) of this package.
dev-master
2018-12-17 07:40 UTC
Requires
- php: >=7.0
- elastic-email/web-api-client: ^1.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.5
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2025-03-17 21:59:36 UTC
README
A simple Laravel wrapper for ElasticEmail.WebApiClient-php
Preparent
Instalation
[1] Install package
composer require billyct/laravel-elastic-email
[2] Add this code to .env file
ELASTIC_EMAIL_API_KEY=<Add your key>
ELASTIC_EMAIL_PUBLIC_ACCOUNT_ID=<Add your account>
[3] If you are using laravel < 5.5
Add provider to your config/app.php file.
'providers' => [
// other providers
Billyct\ElasticEmail\ElasticEmailServiceProvider::class,
]
Usage
Add contact
// $client is singleton wrapper for ElasticClient $client = app(ElasticEmailClient\ElasticClient::class); $client->Contact->Add(...); // or short codeļ¼ Billyct\ElasticEmail\ElasticEmail::addContact('your@mail.com', 'your-list-name', ['field_1' => 'test']);