programic/laravel-mailbox

Handle incoming emails in your Laravel application.

v1.0.0 2024-03-22 12:18 UTC

This package is auto-updated.

Last update: 2024-04-30 11:30:06 UTC


README

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);
});

Installation

You can install the package via composer:

composer require programic/laravel-mailbox

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

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