for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Rizart Dokollari <[email protected]>
* @since 12/24/17
*/
namespace ElasticEmail\Email;
use ElasticEmail\Client;
* Access to Email API end points.
* @see http://api.elasticemail.com/public/help#Email_header
class Email
{
/** @var Client */
private $client;
public function __construct(Client $client)
$this->client = $client;
}
public function send(array $params = [])
$send = new Send($this->client);
return $send->handle($params);