attendeeMessage = $attendeeMessage; } /** * Execute the job. * * @return void */ public function handle() { $this->attendeeMessage->withChunkedRecipients(20, function ($recipients) { $recipients->each(function ($recipient) { Mail::to($recipient)->queue(new AttendeeMessageEmail($this->attendeeMessage)); }); }); } }