I am using laravel-sendgrid-driver (https://github.com/s-ichikawa/laravel-sendgrid-driver?_pjax=%23js-repo-pjax-container ).
It sends email for normal Text. I need to send some 4-5 lines subject. But unable to send email. Shows Errors like "Argument 2 passed to Illuminate\Mail\Mailer::send() must be of the type array, string given,"
$emailTemplate = str_replace($searchArray, $tmpVal, $email);
Mail::send( [], $emailTemplate, function ($message){
$message->to($userDetail[0]->email)
->from('[email protected]', 'test-Technologies')
->subject('Forgot Password');
});
How to resolve " Argument 2 passed to Illuminate\Mail\Mailer::send() must be of the type array, string given,"