Stars: 983
Forks: 121
Pull Requests: 53
Issues: 64
Watchers: 18
Last Updated: 2023-05-23 21:56:42
Catch incoming emails in your Laravel application
License: MIT License
Languages: PHP
https://beyondco.de/docs/laravel-mailbox/getting-started/introduction
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);
});If you want to learn how to create reusable PHP packages yourself, take a look at my upcoming PHP Package Development video course.
You can install the package via composer:
composer require beyondcode/laravel-mailboxTake a look at the official documentation.
composer testPlease see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.