Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from eurides-eu/fix/documentation
Browse files Browse the repository at this point in the history
Fix documentation
  • Loading branch information
joelharkes authored Feb 21, 2023
2 parents ce4a07b + cfe7949 commit 07844bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# Laravel Mailbox 📬

[![Latest Version on Packagist](https://img.shields.io/packagist/v/beyondcode/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)
[![Build Status](https://img.shields.io/travis/beyondcode/laravel-mailbox/master.svg?style=flat-square)](https://travis-ci.org/beyondcode/laravel-mailbox)
[![Quality Score](https://img.shields.io/scrutinizer/g/beyondcode/laravel-mailbox.svg?style=flat-square)](https://scrutinizer-ci.com/g/beyondcode/laravel-mailbox)
[![Total Downloads](https://img.shields.io/packagist/dt/beyondcode/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/joelharkes/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)
[![Build status](https://github.com/eurides-eu/laravel-mailbox/actions/workflows/run-tests.yml/badge.svg)](https://github.com/eurides-eu/laravel-mailbox/actions/workflows/run-tests.yml)
[![Total Downloads](https://img.shields.io/packagist/dt/joelharkes/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)

Handle incoming emails in your Laravel application.

Expand All @@ -26,7 +25,7 @@ If you want to learn how to create reusable PHP packages yourself, take a look a
You can install the package via composer:

```bash
composer require beyondcode/laravel-mailbox
composer require joelharkes/laravel-mailbox
```

## Usage
Expand All @@ -53,7 +52,8 @@ If you discover any security related issues, please email marcel@beyondco.de ins

## Credits

- [Marcel Pociot](https://github.com/mpociot)
- [Marcel Pociot](https://github.com/mpociot) => original founder
- [Joel Harkes](https://github.com/joelharkes) => for this fork
- [All Contributors](../../contributors)

## License
Expand Down
2 changes: 1 addition & 1 deletion docs/drivers/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ See ["MailCare"](https://mailcare.io) for more information.

When working locally, you might not want to use real incoming emails while testing your application. Out of the box, this package supports Laravel's "log" mail driver for incoming emails.

To test incoming emails, set both your `MAIL_DRIVER` and your `MAILBOX_DRIVER` in your `.env` file to "log".
To test incoming emails, set both your `MAIL_MAILER` and your `MAILBOX_DRIVER` in your `.env` file to "log".
Now every time you send an email in your application, this email will appear in your `laravel.log` file and will try to call one of your configured Mailboxes.

0 comments on commit 07844bb

Please sign in to comment.