在laravel 5中发送电子邮件不起作用

时间:2016-10-25 16:02:52

标签: windows laravel email ssl laravel-5

经过长时间的论坛搜索后,我无法找到适合我案例的有用解决方案。
我在laravel中发送了许多用于发送电子邮件的功能,并且总能正常工作。
这一次,我收到了一个错误,如下所示:

  

StreamBuffer.php第95行中的ErrorException:
  stream_socket_enable_crypto():SSL操作失败,代码为1. OpenSSL错误消息:   错误:14090086:SSL例程:SSL3_GET_SERVER_CERTIFICATE:证书验证失败

这是我的.env文件

APP_ENV=local
APP_DEBUG=true
APP_KEY=base64:FMtA/k/okcPZB/HbWGbw5YiBM4EC3njxxLbgcdM1GrA=
APP_URL=http://localhost

DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=myDB
DB_USERNAME=root
DB_PASSWORD=

CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=suckerblood2010@gmail.com
MAIL_PASSWORD=<<Here_my_password>>
MAIL_ENCRYPTION=tls

MAIL_SENDER=Administration

这里我发送邮件的功能(在控制器Auth中):

public function register(Request $request)
{
    $this->validateLogin($request);

    $token = hash('sha256', str_random(100) . time(), false);
    $user = new User();
    $user->email = $request->get('email');
    $user->password = bcrypt($request->get('password'));
    $user->remember_token = $token;
    //$user->save();

    $sent = Mail::send('auth.emails.createAccount', ['token' => $token], function ($m) use ($user) {
        $m->from(getenv('MAIL_USERNAME'), getenv('MAIL_SENDER'));

        $m->to($user->email, $user->email)->subject(config('constants.AccountCreated'));
    });

    if($sent == 1)
    {
        $msg = Lang::get('messages.EmailSent');
        $this->showLoginForm($msg);
    }
    else
    {
        return redirect('/login')->withErrors([
            'email' => Lang::get('messages.UserAddingError')
        ]);
    }
}

我试图将协议从tls更改为ssl,甚至是从587到465的prot 我只有这个项目有这个问题而且我无法理解为什么,尽管我做了所有的搜索......

有什么建议吗?
非常感谢:)

1 个答案:

答案 0 :(得分:0)

您的根证书已丢失或损坏,请尝试安装一个

# 1) Download a valid root ca
http://curl.haxx.se/ca/cacert.pem

# 2) Setup php.ini to point it
openssl.cafile=C:\php5\etc\cacert.pem

要确保它们已加载,请查看此控制台命令响应

php -r 'var_dump(openssl_get_cert_locations());

您可能需要重新启动网络服务器

您也可以在php.ini中禁用ssl对等验证,但不推荐(请不要在生产中执行此操作!

openssl.verify_peer 0

有用的文档:http://php.net/manual/migration56.openssl.php