laravel发送邮件的代码

有源代码吗?包括配置和发送的
已邀请:

求_败

赞同来自:

系统自带的 配置config下的mail.php

俭以养德

赞同来自:

public function index()
{
    $toEmails = array('123@qq.com','456@126.com','789@qq.com');
    //send a message
    //Mail::send('user',array('key'=>'value'),function($message){
    //  $message->to('526682763@qq.com','ikasa')->subject('a new email send to you');
    //});
    foreach($toEmails as $key=>$email)
    {
        $data['email'] = $email;
        //add to the queue
        Mail::queue('user',$data,function($message){
            $message->to($email,'ikasa')->subject('please receive this test email');
        });

    }

}

俭以养德

赞同来自:

已经解决

要回复问题请先登录注册