Skip to content
Catch incoming emails in your Laravel application
PHP
Branch: master
Clone or download

Latest commit

Latest commit adbe91d Jun 3, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
config Disable cleanup artisan command if store_incoming_emails_for_days is INF Dec 20, 2019
database/migrations Use bigIncrements for primary key Sep 1, 2019
docs wip Jun 3, 2020
src wip Jun 3, 2020
tests Merge pull request #53 from LukeeeeBennett/disable-cleanup Apr 15, 2020
.editorconfig wip Jan 21, 2019
.gitattributes wip Jan 21, 2019
.gitignore wip Jun 3, 2020
.scrutinizer.yml wip Jan 21, 2019
.styleci.yml wip Jan 21, 2019
.travis.yml bump php version requirement Jun 3, 2020
CHANGELOG.md wip Jan 21, 2019
CONTRIBUTING.md wip Jan 21, 2019
LICENSE.md wip Jan 21, 2019
README.md Update README.md Jan 28, 2019
composer.json bump php version requirement Jun 3, 2020
phpunit.xml.dist Fix symfony routing issues Jun 3, 2020

README.md

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.

You can’t perform that action at this time.