Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ Laravel Mails can collect everything you might want to track about the mails tha
- Get quickly and automatically notified when email hard/soft bounces or the bouncerate goes too high
- Prune all logged emails periodically to keep the database nice and slim
- Resend logged emails to another recipient
- View all sent emails in the browser using complementary package [Filament Mails](https://github.com/backstagephp/filament-mails)
- View all sent emails in the browser using complementary package [Mails](https://github.com/backstagephp/mails)

## Upcoming features

- We can write drivers for popular email service providers like Resend, SendGrid, Amazon SES and Mailtrap.
- Relate emails being send in Laravel directly to Eloquent models, for example the order confirmation email attached to an Order model.

## Looking for a UI? We've got your back: [Filament Mails](https://github.com/backstagephp/filament-mails)
## Looking for a UI? We've got your back: [Mails](https://github.com/backstagephp/mails)

We created a Laravel [Filament](https://filamentphp.com) plugin called [Filament Mails](https://github.com/backstagephp/filament-mails) to easily view all data collected by this Laravel Mails package.
We created a Laravel [Filament](https://filamentphp.com) plugin called [Mails](https://github.com/backstagephp/mails) to easily view all data collected by this Laravel Mails package.

It can show all information about the emails and events in a beautiful UI:

![Filament Mails](https://raw.githubusercontent.com/backstagephp/filament-mails/main/docs/mails-list.png)
![Mails](https://raw.githubusercontent.com/backstagephp/mails/main/docs/mails-list.png)

## Installation

Expand Down Expand Up @@ -251,17 +251,17 @@ When you send emails within Laravel using the `Mail` Facade or using a `Mailable
Depending on the mail provider, we send these events comming in from the webhooks of the email service provider.

```php
Backstage\Mails\Events\MailAccepted::class,
Backstage\Mails\Events\MailClicked::class,
Backstage\Mails\Events\MailComplained::class,
Backstage\Mails\Events\MailDelivered::class,
Backstage\Mails\Events\MailEvent::class,
Backstage\Mails\Events\MailEventLogged::class,
Backstage\Mails\Events\MailHardBounced::class,
Backstage\Mails\Events\MailOpened::class,
Backstage\Mails\Events\MailResent::class,
Backstage\Mails\Events\MailSoftBounced::class,
Backstage\Mails\Events\MailUnsubscribed::class,
Backstage\Mails\Laravel\Events\MailAccepted::class,
Backstage\Mails\Laravel\Events\MailClicked::class,
Backstage\Mails\Laravel\Events\MailComplained::class,
Backstage\Mails\Laravel\Events\MailDelivered::class,
Backstage\Mails\Laravel\Events\MailEvent::class,
Backstage\Mails\Laravel\Events\MailEventLogged::class,
Backstage\Mails\Laravel\Events\MailHardBounced::class,
Backstage\Mails\Laravel\Events\MailOpened::class,
Backstage\Mails\Laravel\Events\MailResent::class,
Backstage\Mails\Laravel\Events\MailSoftBounced::class,
Backstage\Mails\Laravel\Events\MailUnsubscribed::class,
```

## Testing
Expand Down