时间:2021-07-01 10:21:17 帮助过:2人阅读
\Mail::raw('Text to e-mail', function($message)
{
$message->from('from@163.com', '163');
$message->to('test@qq.com')->subject('Welcome!');
});
\Mail::raw('Text to e-mail', function($message)
{
$message->from('from@163.com', '163');
$message->to('test@qq.com')->subject('Welcome!');
});
默认有返回值的。根据返回值判断发送状态。
建议用第三方邮件服务吧, mailgun, sendcloud 都可以,邮件到达率高 而且发送日志全面。