Laravel Mail sending email but returning false(Laravel Mail 发送电子邮件但返回 false)
问题描述
我正在尝试发送电子邮件并在需要时显示任何错误.以下代码正在发送电子邮件,我收到它就好了.但问题是,当我检查 $sent var 时,它对我返回 false.
I am trying to send a email and show any errors if needed. The following code is sending a email and I am receiving it just fine. The issue though, is that when I do the check on the $sent var, it returns false for me.
我只是在这里遗漏了什么吗?可能是因为晚了.谁知道...
Am I just missing something here? It might be because it's late. Who knows...
$sent = Mail::send('emails.users.reset', compact('user', 'code'), function($m) use ($user)
{
$m->to($user->email)->subject('Activate Your Account');
});
if( ! $sent)
{
$errors = 'Failed to send password reset email, please try again.';
}
推荐答案
Mail::send() 方法不返回任何内容.
The Mail::send() method doesn't return anything.
您可以使用 Mail::failures()(我认为在 4.1 中引入)方法来获取失败的收件人数组,在您的代码中它看起来像这样.
You can use the Mail::failures() (introduced in 4.1 I think) method to get an array of failed recipients, in your code it would look something like this.
Mail::send('emails.users.reset', compact('user', 'code'), function($m) use ($user)
{
$m->to($user->email)->subject('Activate Your Account');
});
if(count(Mail::failures()) > 0){
$errors = 'Failed to send password reset email, please try again.';
}
这篇关于Laravel Mail 发送电子邮件但返回 false的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel Mail 发送电子邮件但返回 false
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01