# SDKs installation

## PHP

You can install the AcyMailing Sending Service library via Composer for your PHP project, here is how to do it.

```sh
composer require acymailing/sending-service
```

Once this is done don't forget to add the autoload file if that isn't already done:

```php
require_once 'vendor/autoload.php';
```

You can now use the AcyMailing Sending Service library by initialising it this way

```php
$acymailer = new AcyMailer\SendingService('your-license-key');
```

## Node

You can install the AcyMailing Sending Service library via npm for your node project, here is how to do it:

```sh
npm i @acymailing/sending-service
```

You can now use the AcyMailing Sending Service library by initialising it this way:

```javascript
const mailer = new AcyMailer('your-license-key');
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.acymailing.com/acymailer/sdks-installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
