siebsie23/laravel-mailbox

Handle incoming emails in your Laravel application.

3.2.2 2024-04-12 13:46 UTC

This package is auto-updated.

Last update: 2024-04-12 13:47:20 UTC


README

Latest Version on Packagist Total Downloads

This is not the official laravel-mailbox package but a fork from the beyondcode/laravel-mailbox package that fixes some small bugs and keeps dependencies updated.

Take a look at the official package here

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 siebsie23/laravel-mailbox

Usage

Take a look at the official documentation from beyondcode.

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.