Knowledge Base   /   PHP   /   Laravel

Laravel: Use Email and Name in Mail::to

Posted on 18 January 2023 01:45 pm
Mail::send($view, $data, function($message) use ($email, $name) {
    $m->to($email,  $name);
    $m->from('youremail@example.com', 'Your Name'); 
    $m->subject('Hi there');
})

Read more...