composer require boundry/sdk<?php
use Boundry\Boundry;
$client = new Boundry(apiKey: getenv('BOUNDRY_API_KEY'));
$email = $client->emails->send([
'from' => 'hello@example.com',
'to' => 'person@example.net',
'subject' => 'Hello from Boundry',
'html' => '<strong>Hello</strong>',
]);
echo $email->getId();The complete generated API is also available as $client->api.