Add the below to Providers to config/app.php : ‘providers’ => [ Sichikawa\LaravelSendgridDriver\SendgridTransportServiceProvider::class SENDGRID_API_KEY=’YOUR_SENDGRID_API_KEY’ config/services.php ‘sendgrid’ => [ Configure ‘from’ in config/mail.php ‘from’ => [ ‘address’ => env(‘MAIL_FROM_ADDRESS’, ‘hello@example.com’), ‘name’ => env(‘MAIL_FROM_NAME’, ‘Example’), ], 5.
Configure a view(ex : mail.blade.php) to the mail created(mailname) Create a Controller for mail if needed use Illuminate\Support\Facades\Mail; use Sichikawa\LaravelSendgridDriver\SendGrid; public function sendmail(){