Skip to content

Commit

Permalink
Merge pull request #1570 from cultuurnet/bugfix/make-mailmanager-queu…
Browse files Browse the repository at this point in the history
…eable

Gave mailmanager interface ShouldQueue to it queues.
  • Loading branch information
grubolsch authored Dec 2, 2024
2 parents 6a008f9 + 6a7516f commit c809bda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Domain/Mail/MailManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
use App\Mails\Template\TemplateName;
use App\Mails\Template\Templates;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Ramsey\Uuid\Uuid;
use Symfony\Component\Mime\Address;

final class MailManager
final class MailManager implements ShouldQueue
{
use Queueable;

Expand Down

0 comments on commit c809bda

Please sign in to comment.