dashamail/haskimail-php

The officially supported PHP client for Haski (https://haskimail.ru)

Maintainers

Package info

github.com/DashaMail/haskimail-php

pkg:composer/dashamail/haskimail-php

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.2 2026-02-23 18:28 UTC

This package is auto-updated.

Last update: 2026-03-29 14:24:40 UTC


README

Haskimail-PHP is the officially supported PHP library for Haskimail. With Haskimail, you can send and receive emails effortlessly.

Requirements

PHP >=7.0.0 Guzzle HTTP client

Getting Started

// Sending email with Haskimail-PHP library
// Learn more -> https://haskimail.ru/developer/integration/official-libraries#php

// Install with composer
composer require dashamail/haskimail-php

// Import
use Haskimail\HaskimailClient;

// Example request
$client = new HaskimailClient("server token");

$sendResult = $client->sendEmail(
  "отправитель@example.com",
  "получатель@example.com",
  "Привет от Хаски!",
  "Это просто дружеский привет от пользователя Хаски!"
);