note = $note; } /** * Execute the job. * * @return void */ public function handle(Mailer $mailer) { $note = $this->note; $emails = ['samuel@click-mobile.com']; $data = [ 'client' => $note->mno_info->name, 'created_by' => $note->created_by_info->name, 'services' => $note->services, 'notes_body' => $note->notes_body ]; \Log::info($note->notes_body); $mailer->send('emails.new-mno-notes', $data, function ($message) use ($data, $emails) { $message->from('alerts@click-mobile.com', 'Click Mobile ERP'); $message->to($emails)->subject('New Notes on Mobile Operators'); }); } }