LaravelPackages.net
Acme Inc.
Toggle sidebar
reefki/laravel-mailbox

Handle incoming emails in your Laravel application.

661
0
2.2.1
About reefki/laravel-mailbox

reefki/laravel-mailbox is a Laravel package for handle incoming emails in your laravel application.. It currently has 0 GitHub stars and 661 downloads on Packagist (latest version 2.2.1). Install it with composer require reefki/laravel-mailbox. Discover more Laravel packages by reefki or browse all Laravel packages to compare alternatives.

Last updated

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 [email protected] instead of using the issue tracker.

Credits

License

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

Comments