PHP code example of bertoost / elasticemail-swiftmailer
1. Go to this page and download the library: Download bertoost/elasticemail-swiftmailer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bertoost / elasticemail-swiftmailer example snippets
use ElasticEmail\Api\EmailsApi;
$config = Configuration::getDefaultConfiguration()
->setApiKey('X-ElasticEmail-ApiKey', 'YOUR_API_KEY');
$apiInstance = new EmailsApi(new Client(), $config);
$transport = new ElasticEmailTransport($dispathEvent, $apiInstance);