Comment créer un système de messagerie simple dans Laravel sans vue ni notification

$name 	   = "User Name";
$fromEmail = "[email protected]";
$toEmail   = "[email protected]";
$subject   = "Simple Mail in Laravel";
$mailBody  = "<h3><b>From:</b> $fromEmail </h3><div>Details...</div>";
        
\Mail::html( $mailBody, function( $message ) {
   $message->subject( $subject )
           ->to( $toEmail );
});
Akash