Laravel 5-检查邮件是否已发送 [英] Laravel 5 - check if mail is send

查看:114
本文介绍了Laravel 5-检查邮件是否已发送的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有一种方法可以100%确保要发送的电子邮件确实已发送(我不是说不存在的电子邮件地址)?

Is there a way to be a 100% sure that the email you want to send is actually delivered (I'm not talking about an email address that doesn't exist)?

您可以额外检查吗?我正在使用Larevel 5.0.

Can you do an extra check? I'm working in Larevel 5.0.

推荐答案

Mail::send(...)

错误报告

And Error Reporting is

if( count(Mail::failures()) > 0 ) {

   foreach(Mail::failures as $email_address) {
       echo "$email_address <br />";
    }

} else {
    echo "Mail sent successfully!";
}

这篇关于Laravel 5-检查邮件是否已发送的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆