beyondcode/laravel-mailbox

Handle incoming emails in your Laravel application.

Maintainers

👁 beyondcode

Package info

github.com/beyondcode/laravel-mailbox

pkg:composer/beyondcode/laravel-mailbox

Statistics

Installs: 1 121 807

Dependents: 6

Suggesters: 0

Stars: 1 129

Open Issues: 30

6.0.0 2026-03-20 15:55 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 681a064f209c6edfd2ceae87d9a1999a65624f41

beyondcodelaravel-mailbox


README

👁 Latest Version on Packagist
👁 Total Downloads

Handle incoming emails in your Laravel application.

Mailbox::from('{username}@gmail.com', function (InboundEmail $email, $username) {
 // Access email attributes and content
 $subject = $email->subject();

 $email->reply(new ReplyMailable);
});

Installation

You can install the package via composer:

composer require beyondcode/laravel-mailbox

Usage

Take a look at the official documentation.

Catch, test and debug application mails with Laravel Herd

Laravel Herd provides an integrated local email service, streamlining the process of testing and debugging application emails. The email service organizes emails into distinct inboxes for each application, ensuring they are easily accessible and simple to locate.

herd.laravel.com

👁 image

Testing

Inbound messages are parsed with zbateson/mail-mime-parser (see the docs on handling inbound email). Run the package test suite with:

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email marcel@beyondco.de instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.