Level 88
You need to add it by your self. The following steps should do it
// Require the mail package
composer require illuminate/mail
// Next you need to register the mailer in bootstrap/app.php
$app->register('App\Providers\AppServiceProvider');
$app->withFacades();
// You can now send emails using the Mail facade
Mail::raw('Raw string email', function($msg) { $msg->to(['[email protected]']); $msg->from(['[email protected]']); });
Note: I did this out of my head so you might need to tweak it a bit, but this is the basic idea