mail-intercept icon indicating copy to clipboard operation
mail-intercept copied to clipboard

A testing package for intercepting mail sent from Laravel

Results 3 mail-intercept issues
Sort by recently updated
recently updated
newest added

Is there a way to assert attachments? I tried accessing them via intercepted mail collection but it's values are private.

enhancement

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' =>...