codiblenet/laravel-mail-reacher

Official Laravel mail transport for Mail Reacher.

Maintainers

Package info

github.com/CodibleNet/laravel-mail-reacher

Homepage

pkg:composer/codiblenet/laravel-mail-reacher

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-06-14 17:07 UTC

This package is auto-updated.

Last update: 2026-06-14 21:07:15 UTC


README

Official Laravel mail transport for Mail Reacher. It lets existing Mail, Mailable, notification and MailMessage flows send through Mail Reacher without rewriting application email code.

Installation

composer require codiblenet/laravel-mail-reacher

Publish config if needed:

php artisan vendor:publish --tag=mailreacher-config

Configuration

MAIL_MAILER=mailreacher
MAILREACHER_API_KEY=mr_test_or_live_key
MAIL_FROM_ADDRESS=noreply@example.com
MAIL_FROM_NAME="Your App"

Add the mailer to config/mail.php if it is not already present:

'mailers' => [
    'mailreacher' => [
        'transport' => 'mailreacher',
    ],
],

That is intentionally the only Mail Reacher-specific environment knob for normal apps: the package sends to the official Mail Reacher API endpoint, and MAILREACHER_API_KEY selects the project environment/provider.

Existing Laravel Mail, Mailable, Notification and MailMessage flows keep working.

Example

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

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

Publishing

This repository is intended to be published on Packagist as codiblenet/laravel-mail-reacher and versioned with GitHub releases/tags such as v0.1.0.

Testing

composer test