Level 13
check the official documentation.
https://laravel.com/docs/5.8/mail
but simply you can send mail with this way
\Mail::to("[email protected]")->send();
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
$from = "[email protected]"; $to = "sabbir94@gmail.com"; $subject = "Checking PHP mail"; $message = "PHP mail works just fine"; $headers = "From:" . $from; mail($to,$subject,$message, $headers);
please help me
##_client requirement to use php mail function use :(
Please or to participate in this conversation.