You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
# Filament Mails
2
2
3
-
[](https://packagist.org/packages/backstagephp/filament-mails)
[](https://packagist.org/packages/vormkracht10/filament-mails)
## Nice to meet you, we're [Backstage](https://backstagephp.com)
8
+
## Nice to meet you, we're [Vormkracht10](https://vormkracht10.nl)
9
9
10
10
Hi! We are a web development agency from Nijmegen in the Netherlands and we use Laravel for everything: advanced websites with a lot of bells and whistles and large web applications.
11
11
@@ -29,16 +29,16 @@ Filament Mails can collect everything you might want to track about the mails th
29
29
30
30
Email as a protocol is very error prone. Succesfull email delivery is not guaranteed in any way, so it is best to monitor your email sending realtime. Using external services like Postmark, Mailgun or Resend email gets better by offering things like logging and delivery feedback, but it still needs your attention and can fail silently but horendously. Therefore we created Laravel Mails that fills in all the gaps.
31
31
32
-
The package is built on top of [Laravel Mails](https://github.com/backstagephp/laravel-mails).
32
+
The package is built on top of [Laravel Mails](https://github.com/vormkracht10/laravel-mails).
Add the routes to the PanelProvider using the `routes()` method, like this:
65
65
66
66
```php
67
-
use Backstage\FilamentMails\Facades\FilamentMails;
67
+
use Vormkracht10\FilamentMails\Facades\FilamentMails;
68
68
69
69
public function panel(Panel $panel): Panel
70
70
{
@@ -76,7 +76,7 @@ public function panel(Panel $panel): Panel
76
76
Then add the plugin to your `PanelProvider`
77
77
78
78
```php
79
-
use Backstage\FilamentMails\FilamentMailsPlugin;
79
+
use Vormkracht10\FilamentMails\FilamentMailsPlugin;
80
80
81
81
public function panel(Panel $panel): Panel
82
82
{
@@ -90,8 +90,8 @@ public function panel(Panel $panel): Panel
90
90
If you want to protect the mail routes with your (tenant) middleware, you can do so by adding the routes to the `tenantRoutes`:
91
91
92
92
```php
93
-
use Backstage\FilamentMails\FilamentMailsPlugin;
94
-
use Backstage\FilamentMails\Facades\FilamentMails;
93
+
use Vormkracht10\FilamentMails\FilamentMailsPlugin;
94
+
use Vormkracht10\FilamentMails\Facades\FilamentMails;
95
95
96
96
public function panel(Panel $panel): Panel
97
97
{
@@ -102,7 +102,7 @@ public function panel(Panel $panel): Panel
102
102
```
103
103
104
104
> [!IMPORTANT]
105
-
> For setting up the webhooks to register mail events, please look into the README of [Laravel Mails](https://github.com/backstagephp/laravel-mails), the underlying package that powers this package.
105
+
> For setting up the webhooks to register mail events, please look into the README of [Laravel Mails](https://github.com/vormkracht10/laravel-mails), the underlying package that powers this package.
106
106
107
107
### Configuration
108
108
@@ -123,34 +123,34 @@ return [
123
123
### List with all sent emails and statistics
124
124
125
125
The package provides a clear overview of all emails, including statistics and the ability to filter the data.
You can view all relevant information about the email, such as the subject, the body, the attachments, the from address, the to address(es), the cc address(es), the bcc address(es), the reply to address, metadata and much more.
0 commit comments