PHPackages                             sohaibilyas/laravel-zeptomail - 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. sohaibilyas/laravel-zeptomail

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

sohaibilyas/laravel-zeptomail
=============================

A ZeptoMail mail transport for Laravel.

v1.0.1(1mo ago)0191↓28.3%MITPHPPHP ^8.2

Since Jul 4Pushed 1mo agoCompare

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

READMEChangelog (1)Dependencies (10)Versions (3)Used By (0)

Laravel ZeptoMail
=================

[](#laravel-zeptomail)

A Laravel mail transport for sending mail through [Zoho ZeptoMail](https://www.zoho.com/zeptomail/).

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

[](#installation)

```
composer require sohaibilyas/laravel-zeptomail
```

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

[](#configuration)

Add your ZeptoMail token to `.env`:

```
ZEPTOMAIL_TOKEN="Zoho-enczapikey your-token"
ZEPTOMAIL_HOST=api.zeptomail.com
ZEPTOMAIL_API_VERSION=v1.1
```

You may also pass only the raw token value. The transport will add the `Zoho-enczapikey` prefix automatically.

The package automatically registers a `zeptomail` Laravel mailer. Set it as your default mailer:

```
MAIL_MAILER=zeptomail
MAIL_FROM_ADDRESS=noreply@example.com
MAIL_FROM_NAME="${APP_NAME}"
```

Publishing the config file is optional. Use it only when you want the ZeptoMail package config in your app:

```
php artisan vendor:publish --tag=zeptomail-config
```

If you prefer to configure ZeptoMail inside Laravel's mail config instead, you may add a `zeptomail` entry to `config/mail.php`:

```
'mailers' => [
    'zeptomail' => [
        'transport' => 'zeptomail',
        'token' => env('ZEPTOMAIL_TOKEN'),
        'host' => env('ZEPTOMAIL_HOST', 'api.zeptomail.com'),
        'version' => env('ZEPTOMAIL_API_VERSION', 'v1.1'),
        'timeout' => env('ZEPTOMAIL_TIMEOUT', 30),
    ],
],
```

Usage
-----

[](#usage)

Use Laravel's mail API as usual:

```
use App\Mail\WelcomeMail;
use Illuminate\Support\Facades\Mail;

Mail::to('info@example.com')->send(new WelcomeMail);
```

The transport sends requests to:

```
https://api.zeptomail.com/v1.1/email

```

Testing
-------

[](#testing)

```
composer test
```

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance90

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

48d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7788998?v=4)[Sohaib Ilyas](/maintainers/sohaibilyas)[@sohaibilyas](https://github.com/sohaibilyas)

---

Top Contributors

[![sohaibilyas](https://avatars.githubusercontent.com/u/7788998?v=4)](https://github.com/sohaibilyas "sohaibilyas (2 commits)")

---

Tags

laravelmailtransportZohozeptomail

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/sohaibilyas-laravel-zeptomail/health.svg)

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[illuminate/mail

The Illuminate Mail package.

5910.7M579](/packages/illuminate-mail)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-laravel)[forjedio/inertia-table

Backend-driven dynamic tables for Laravel + Inertia.js

272.0k](/packages/forjedio-inertia-table)

PHPackages © 2026

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