PHPackages                             nomadicsoft/laravel-dashamail - 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. nomadicsoft/laravel-dashamail

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

nomadicsoft/laravel-dashamail
=============================

Laravel mail transport for DashaMail transactional API

00PHP

Since Apr 6Pushed 3mo agoCompare

[ Source](https://github.com/nomadicsoft/laravel-dashamail)[ Packagist](https://packagist.org/packages/nomadicsoft/laravel-dashamail)[ RSS](/packages/nomadicsoft-laravel-dashamail/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel DashaMail
=================

[](#laravel-dashamail)

[![Latest Version on Packagist](https://camo.githubusercontent.com/93542b83a17c489cf5da6c7f99dfc1bff7998312bbcccf8469e2506b36bb157d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f6d61646963736f66742f6c61726176656c2d64617368616d61696c2e737667)](https://packagist.org/packages/nomadicsoft/laravel-dashamail)[![License](https://camo.githubusercontent.com/234bacf95c329f03ffb189a936bd36f5850a6ba8de94b459e0156763fda8ad8c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6e6f6d61646963736f66742f6c61726176656c2d64617368616d61696c2e737667)](LICENSE)

Laravel mail transport for [DashaMail](https://dashamail.ru) — the leading Russian transactional and marketing email platform.

Built by [Nomadicsoft](https://nomadicsoft.io).

---

Requirements
------------

[](#requirements)

- PHP 8.1+
- Laravel 10, 11, or 12

---

Installation
------------

[](#installation)

```
composer require nomadicsoft/laravel-dashamail
```

The service provider is auto-discovered — no manual registration needed.

---

Prerequisites
-------------

[](#prerequisites)

Before sending, DashaMail requires:

1. **Configured sending domain** — add your domain with SPF &amp; DKIM records at
    DashaMail dashboard → **Аккаунт → Мои домены**
2. **Confirmed from-address** — verify your sending address at
    **Доставляемость → Подтверждённые отправители**
3. **API access enabled** — on the free plan, email  to enable the transactional API. On paid plans it is available immediately.
4. **API key** — find it at **Интеграции → Транзакционные письма**

---

Configuration
-------------

[](#configuration)

### 1. Add your API key to `.env`

[](#1-add-your-api-key-to-env)

```
DASHAMAIL_API_KEY=your_api_key_here
MAIL_MAILER=dashamail
MAIL_FROM_ADDRESS=noreply@yourdomain.ru
MAIL_FROM_NAME="Your App"
```

### 2. Add the mailer to `config/mail.php`

[](#2-add-the-mailer-to-configmailphp)

```
'mailers' => [

    'dashamail' => [
        'transport' => 'dashamail',
        'api_key'   => env('DASHAMAIL_API_KEY'),
    ],

    // ... other mailers
],
```

### 3. Set as default mailer

[](#3-set-as-default-mailer)

```
MAIL_MAILER=dashamail
```

Or use it explicitly per-send:

```
Mail::mailer('dashamail')->to($user)->send(new WelcomeMail());
```

---

Usage
-----

[](#usage)

Works with all standard Laravel mail features:

```
// Notifications
$user->notify(new ResetPasswordNotification($token));

// Mailables
Mail::to('user@example.com')->send(new InvoiceMail($invoice));

// Fluent
Mail::mailer('dashamail')
    ->to('user@example.com')
    ->cc('manager@example.com')
    ->send(new OrderConfirmationMail($order));
```

---

What's supported
----------------

[](#whats-supported)

FeatureSupportedHTML body✅Plain text body✅CC / BCC✅Reply-To✅Attachments✅Custom From name✅Transaction ID (message ID)✅---

Changelog
---------

[](#changelog)

### 1.0.0

[](#100)

- Initial release

---

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

---

About Nomadicsoft
-----------------

[](#about-nomadicsoft)

[Nomadicsoft](https://nomadicsoft.io) is a software development company. We build web applications, APIs, and internal tools.

###  Health Score

18

—

LowBetter than 7% of packages

Maintenance53

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/68226343?v=4)[NomadicSoft](/maintainers/nomadicsoft)[@nomadicsoft](https://github.com/nomadicsoft)

---

Top Contributors

[![kurumbus](https://avatars.githubusercontent.com/u/13556916?v=4)](https://github.com/kurumbus "kurumbus (1 commits)")

### Embed Badge

![Health badge](/badges/nomadicsoft-laravel-dashamail/health.svg)

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

PHPackages © 2026

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