无法与主机smtp.gmail.com建立连接[网络无法访问#101]。在StreamBuffer.php第278行

时间:2019-09-02 09:10:07

标签: php laravel smtp

我的电子邮件无法发送,并且出现错误,例如无法与主机smtp.gmail.com建立连接[网络无法访问#101]。我尝试遵循stackoverflow中的步骤,但没有任何反应。 这是我的.env

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_ENCRYPTION=tls

这是我的mail.php

'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),

这是我的StreamBuffer.php第278行

$streamContext = stream_context_create($options);
    $this->_stream = @stream_socket_client($host.':'.$this->_params['port'], $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, $streamContext);
    if (false === $this->_stream) {
        throw new Swift_TransportException(
            'Connection could not be established with host '.$this->_params['host'].
            ' ['.$errstr.' #'.$errno.']'
            );
    }

1 个答案:

答案 0 :(得分:0)

请在.env中添加邮件用户名和密码

  MAIL_DRIVER=smtp
  MAIL_HOST=smtp.gmail.com
  MAIL_PORT=2525
  MAIL_USERNAME=username
  MAIL_PASSWORD=password
  MAIL_ENCRYPTION=null