PHP code example of koosh / mailigen

1. Go to this page and download the library: Download koosh/mailigen 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/ */

    

koosh / mailigen example snippets


$api = new \Mailigen\ApiClient('your-api-key');
try {
    $api->someMethod($args);
} catch (\Mailigen\MailigenException $e) {
    var_dump($e);
}