customFormResponse = $customFormResponse; } /** * Execute the job. */ public function handle(): void { $mail_settings = $this->customFormResponse->form->mail_settings; foreach ($mail_settings as $setting) { Mail::to($setting['target']) ->send(new CustomFormResponseMail($setting, $this->customFormResponse->answers, $this->customFormResponse->form->columns)); } } }