beyondcode / laravel-mailbox by beyondcode

Handle incoming emails in your Laravel application.
659,785
1,065
15
Package Data
Maintainer Username: beyondcode
Maintainer Contact: marcel@beyondco.de (Marcel Pociot)
Package Create Date: 2019-01-21
Package Last Update: 2024-05-24
Home Page: https://beyondco.de/docs/laravel-mailbox/getting-started/introduction
Language: PHP
License: MIT
Last Refreshed: 2025-02-21 03:01:39
Package Statistics
Total Downloads: 659,785
Monthly Downloads: 23,882
Daily Downloads: 1,385
Total Stars: 1,065
Total Watchers: 15
Total Forks: 130
Total Open Issues: 38

Laravel Mailbox 📬

Latest Version on Packagist Build Status Quality Score 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);
});

https://phppackagedevelopment.com

If you want to learn how to create reusable PHP packages yourself, take a look at my upcoming PHP Package Development video course.

Installation

You can install the package via composer:

composer require beyondcode/laravel-mailbox

Usage

Take a look at the official documentation.

Testing

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.