Answers for "laravel mail to specific email with name"

PHP
0

send html email laravel

// $data => array of information passed to view
Mail::send('email_view', $data, function ($m) use ($user) {
                $m->from("[email protected]", config('app.name', 'APP Name'));
                $m->to($user->email, $user->email)->subject('Email Subject!');
            });
Posted by: Guest on May-28-2021
-1

laravel mail to specific email with name

$to = [
    [
        'email' => $email, 
        'name' => $name,
    ]
];
\Mail::to($to)->send(new \App\Mail\Hello);
Posted by: Guest on May-12-2021

Browse Popular Code Answers by Language