Integration to the Elastic Email API http://api.elasticemail.com/public/help
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
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.
$elasticEmail = new \ElasticEmail\ElasticEmail('your_elastic_api_key');
$elasticEmail->email()->send([
'to' => 'to_email',
'subject' => 'subject',
'from' => 'from_email'
]);
Using composer
composer require magentron/elasticemail-php