LaravelPackages.net
Acme Inc.
Toggle sidebar
magentron/elasticemail-php

Integration to the Elastic Email API http://api.elasticemail.com/public/help

283
0
1.0.6
About magentron/elasticemail-php

magentron/elasticemail-php is a Laravel package for integration to the elastic email api http://api.elasticemail.com/public/help. It currently has 0 GitHub stars and 283 downloads on Packagist (latest version 1.0.6). Install it with composer require magentron/elasticemail-php. Discover more Laravel packages by magentron or browse all Laravel packages to compare alternatives.

Last updated

ElasticEmailPHP

CircleCI Coverage Status Scrutinizer Code Quality SensioLabsInsight StyleCI

This is a fork of rdok/elasticemail-php by Jeroen Derks, a.k.a Magentron. This fork was created in order to have be able to use with PHPUnit 7+ and to have author- and environment-independent tests.

ElasticEmailPHP is a PHP Library for interacting with Elastic Email platform API.

Example

$elasticEmail = new \ElasticEmail\ElasticEmail('your_elastic_api_key');

$elasticEmail->email()->send([
    'to'      => 'to_email',
    'subject' => 'subject',
    'from'    => 'from_email'
]);

Installation

Using composer

composer require magentron/elasticemail-php
Comments