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