email) // ->send(new \App\Mail\NotificationMail( // $notification->getSubject(), // $notification->getMessage() // )); return $smtp->send_html([ 'address' => $user->email, 'subject' => $notification->getSubject(), 'body' => $notification->getMessage(), 'from_name' => $_ENV['MAIL_SMTP_USERNAME'], ]); } }