作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Laravel 5.4。当我从本地服务器发送邮件时,邮件将进入收件箱文件夹,工作正常,配置文件 .env 如下:-
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=email
MAIL_PASSWORD=password
MAIL_ENCRYPTION=tls
之后我切换到实时服务器并配置 .env 文件如下:->
MAIL_DRIVER=sendmail
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=ssl
邮件收到但在垃圾邮件文件夹中。如何避免来自垃圾邮件文件夹。
这是我的 Controller 函数
function createSchool(Request $request){
$this->validator($request->all())->validate();
$user = $this->create($request->all());
if($user){
$mailInformation = $request->all();
if($mailInformation){
Mail::to($request->user())
->cc($mailInformation['email'])
->send(new SchoolRegistration($mailInformation));
}
return redirect('admin/schools')->with('success', 'School added Successfully');
}
}
最佳答案
您的电子邮件登陆是垃圾邮件与框架无关,但是您可以通过以下几件事来检查它发生的原因:
这些问题有助于电子邮件不落入垃圾邮件,但这不是确定的解决方案。 :-)
一些阅读 Material :
php email - how to avoid mail ending up in spam box
How do you make sure email you send programmatically is not automatically marked as spam?
关于php - 如何在 Laravel 5.4 中配置 .env 文件避免垃圾邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45751006/
我是一名优秀的程序员,十分优秀!