mail-intercept
mail-intercept copied to clipboard
A testing package for intercepting mail sent from Laravel
Is there a way to assert attachments? I tried accessing them via intercepted mail collection but it's values are private.
Hey there - will there be support for Laravel 11?
I have multiple mailers configured in my `config/mail.php` with the default set to `sendmail` ```php 'default' => env('MAIL_MAILER', 'sendmail'), 'mailers' => [ 'sendmail' => [ 'transport' => 'sendmail', 'path' =>...