You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct namespaces from Exbil to Exbil\Mailcow
Changes done automatically using command:
find -type f -name '*.php' -exec sed -i 's/Exbil\\/Exbil\\Mailcow\\/' {} \;
Also corrects the used `MailCowAPI` signature in the readme to include
the Mailcow domain.
Search for the API Documentation here.
You need an API Key for that.
Example
<?php// Require the autoloaderrequire_once'vendor/autoload.php';
// Use the library namespaceuseExbil\MailCow\MailCowAPI;
useExbil\MailCowAPI;
// Then simply pass your API-Token when creating the API client object.$client = newMailCowAPI('mailcow-with-https.example.com','MAILCOW_API_KEY');
$client = newMailCowAPI('MAILCOW_API_KEY');
// Then you are able to perform a requestvar_dump($client->domains()->getDomains());
?>
0 commit comments