Skip to content

Commit

Permalink
add interacts with queue middleware to send queued mailable (#44124)
Browse files Browse the repository at this point in the history
  • Loading branch information
dododedodonl authored Sep 14, 2022
1 parent e4e9df0 commit 8a77c3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Mail/SendQueuedMailable.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
use Illuminate\Contracts\Mail\Factory as MailFactory;
use Illuminate\Contracts\Mail\Mailable as MailableContract;
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
use Illuminate\Queue\InteractsWithQueue;

class SendQueuedMailable
{
use Queueable;
use Queueable, InteractsWithQueue;

/**
* The mailable message instance.
Expand Down

0 comments on commit 8a77c3a

Please sign in to comment.