我正在使用Laravel Mail发送邮件,但它显示500错误
localhost页面无效
localhost目前无法处理此请求。
我正在使用此代码
\Mail::send('suppliers.mail',['name' => 'test'],function ($mail) {
$mail->subject('Supplier Details');
$mail->from('dump.test@gmail.com');
$mail->to('dump.ajit@gmail.com');
});
我已经在ubuntu中设置了smtp服务器并在laravel的config文件夹中配置mail.php,我可以使用核心php代码发送邮件
答案 0 :(得分:0)
在.env文件中
MAIL_DRIVER=mail
MAIL_HOST=localhost
MAIL_PORT=587
邮件功能正在运作。
$a = Mail::send('emails.reminder', [], function ($m) {
$m->from('no-reply@domain.com');
$m->to('vijaydeva@domain.com')->subject('Your Reminder!');
});