In laravel 5.3, at the time of sending the email it does not return anything. Would you like to return some data to see if the email was sent or not?
Something like this:
$mail = Mail::to('[email protected]')->send(new ContatoEmail($dados));
if($mail) {
//Email enviado
}
else {
//Falha ao enviar email
}
Please, folks. Can you help me?