swolebrain / ahrdmail-client-php
PHP client for the Ahrdmail email API
v0.1.0
2026-03-13 22:09 UTC
Requires
- php: ^8.1
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.5
- phpunit/phpunit: ^8.0 || ^9.0
README
client for ahrdmail in php. Doesn't include auth yet.
The composer package distribution is integrated into github. To create a new version, once the code is pushed just do:
git tag v0.1.n
git push origin v0.1.n
Installation & Usage
Requirements
PHP 8.1 and later.
Composer
To install the bindings via Composer, add the following to composer.json:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
}
],
"require": {
"GIT_USER_ID/GIT_REPO_ID": "*@dev"
}
}
Then run composer install
Manual Installation
Download the files and include autoload.php:
<?php require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure API key authorization: smithy.api.httpApiKeyAuth $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key', 'YOUR_API_KEY'); // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed // $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer'); $apiInstance = new OpenAPI\Client\Api\DefaultApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config ); $check_email_identity_dns_request_content = new \OpenAPI\Client\Model\CheckEmailIdentityDnsRequestContent(); // \OpenAPI\Client\Model\CheckEmailIdentityDnsRequestContent try { $result = $apiInstance->checkEmailIdentityDns($check_email_identity_dns_request_content); print_r($result); } catch (Exception $e) { echo 'Exception when calling DefaultApi->checkEmailIdentityDns: ', $e->getMessage(), PHP_EOL; }
API Endpoints
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| DefaultApi | checkEmailIdentityDns | POST /email-identity/check-dns | |
| DefaultApi | createEmailIdentity | POST /email-identities | |
| DefaultApi | createSubtenant | POST /subtenants | |
| DefaultApi | deleteEmailIdentity | DELETE /email-identity | |
| DefaultApi | listCampaignMetrics | GET /metrics/campaigns | |
| DefaultApi | listEmailIdentities | GET /email-identities | |
| DefaultApi | listSubtenantMetrics | GET /metrics/subtenants | |
| DefaultApi | sendEmail | POST /email |
Models
- AhrdMailDnsRecordName
- CampaignMetricsSummary
- CheckEmailIdentityDnsRequestContent
- CheckEmailIdentityDnsResponseContent
- CreateEmailIdentityRequestContent
- CreateEmailIdentityResponseContent
- CreateSubtenantRequestContent
- CreateSubtenantResponseContent
- DeleteEmailIdentityResponseContent
- DkimSettings
- DnsRecord
- EmailBody
- EmailBodyType
- EmailIdentityStatus
- EmailIdentitySummary
- ListCampaignMetricsResponseContent
- ListEmailIdentitiesResponseContent
- ListSubtenantMetricsResponseContent
- SendEmailRequestContent
- SendEmailResponseContent
- SubtenantMetricsSummary
- ValidationExceptionField
- ValidationExceptionResponseContent
- VerificationTokens
Authorization
Authentication schemes defined for the API:
smithy.api.httpApiKeyAuth
- Type: API key
- API key parameter name: x-api-key
- Location: HTTP header
Tests
To run the tests, use:
composer install vendor/bin/phpunit
Author
About this package
This PHP package is automatically generated by the OpenAPI Generator project:
- API version:
1.0.0- Generator version:
7.20.0
- Generator version:
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen