PHPackages                             blastengine/blastengine - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. blastengine/blastengine

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

blastengine/blastengine
=======================

This library sends email quickly using blastengine API.

v0.1.0(2y ago)213.3k↑12.5%MITPHP

Since Dec 10Pushed 2y ago1 watchersCompare

[ Source](https://github.com/blastengineMania/blastengine-php)[ Packagist](https://packagist.org/packages/blastengine/blastengine)[ RSS](/packages/blastengine-blastengine/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (11)Used By (0)

PHP SDK for blastengine
=======================

[](#php-sdk-for-blastengine)

PHP SDK for blastengine is SDK for sending email using blastengine.

Usage
=====

[](#usage)

Initialize
----------

[](#initialize)

```
Blastengine\Client::initialize($your_user_id, $your_api_key);
```

Send transaction email
----------------------

[](#send-transaction-email)

```
$transaction = new Blastengine\Transaction();
$transaction
	->to($this->config["to"])
	->from($this->config["from"]["email"])
	->subject('Test subject')
	->text_part('This is test email');
try {
	$transaction->send();
} catch ( Exception $ex ) {
	// Error
}
```

Send transaction email with attachments
---------------------------------------

[](#send-transaction-email-with-attachments)

```
$transaction = new Blastengine\Transaction();
$transaction
	->to($this->config["to"])
	->from($this->config["from"]["email"])
	->subject('Test subject')
	->text_part('This is test email')
	->attachment('/path/to/image')
	->attachment('/path/to/another');
try {
	$transaction->send();
} catch ( Exception $ex ) {
	// Error
}
```

Get email info
--------------

[](#get-email-info)

```
$transaction = new Blastengine\Transaction();
$transaction->delivery_id(100);
$transaction->get();
echo $transaction->delivery_type // => TRANSACTION
```

You can access other information below.

Test
====

[](#test)

All test
--------

[](#all-test)

```
vendor/bin/phpunit

```

Specific test
-------------

[](#specific-test)

```
vendor/bin/phpunit --filter testEmail

```

PHPStan
-------

[](#phpstan)

```
./vendor/bin/phpstan analyze --error-format friendly

```

This SDK is PHPStan level 7.

License
=======

[](#license)

MIT.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~59 days

Recently: every ~99 days

Total

10

Last Release

769d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d48690a92dd495b97879b66b40766af09baa1a4f4d30a13f51262b29efdf164c?d=identicon)[goofmint](/maintainers/goofmint)

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/blastengine-blastengine/health.svg)

```
[![Health](https://phpackages.com/badges/blastengine-blastengine/health.svg)](https://phpackages.com/packages/blastengine-blastengine)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[guanguans/notify

Push notification SDK(AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NotifyX、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

687114.3k8](/packages/guanguans-notify)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

254168.5k](/packages/erag-laravel-disposable-email)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
