を使用して一度に複数のメールを送信することができました。一度に1人のユーザーにメールを送信するように管理しましたが、1人で複数のユーザーにメールを送信できませんでした。私は多くの方法を試しましたが、以下は、複数の電子メールを送信しようとしているサンプルコードです。Laravel 4.2
if (isset($_POST['searchbutton'])) {
$data = $query->where('blood_type', '=', "$search")
->Where('state', '=', "$state")->get();
if (isset($POST['emailbutton'])) {
foreach ($data as $row)
Mail::send('emails.notify', array('name' => 'Name'), function($message) {
$message->to($row->email, $row->name)->subject('Hello');
});
}
}
ありがとうございます。ここで