Bom dia pessoal!!!
Não estou conseguindo enviar o e-mail, estou recebendo esse erro:
Cannot send message without a sender address
Estou usando o Laravel 8.54
Segue o código:
.env:
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=********
MAIL_PASSWORD=********
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
web.php:
Route::get('/enviando-email', function () {
$email = new NovaSerie('Arrow', 5, 10);
$email->subject = 'Nova Série Adicionada';
$user = (object) [
'email' => 'bruno@teste.com',
'name' => 'Bruno'
];
Mail::to($user)->send($email);
return 'Email enviado!';
});
Recebo esse erro mesmo eu passando o e-mail de remetente que é o 'bruno@teste.com'.