AcyMailing
Our siteForumBlog
Sending service
Sending service
  • Quick Start
  • SDKs installation
  • License information
  • Domains
    • Register new domain
    • Update domain
    • Delete domain
  • Send email
Powered by GitBook
On this page
  • PHP
  • Node

SDKs installation

Here is the guide to install the SQK for the language that you need

PHP

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

composer require acymailing/sending-service

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

require_once 'vendor/autoload.php';

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

$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:

npm i @acymailing/sending-service

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

const mailer = new AcyMailer('your-license-key');
PreviousQuick StartNextLicense information

Last updated 1 year ago