Когда я пытаюсь использовать SMTP GMail для отправки электронной почты через Laravel, я сталкиваюсь со следующей ошибкой:
Swift_TransportException
Connection could not be established with host smtp.gmail.com [Connection timed out #110]
Это трассировка ошибки:
...
}
$this->_stream = @stream_socket_client($host.':'.$this->_params['port'], $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, stream_context_create($options));
if (false === $this->_stream) {
throw new Swift_TransportException(
'Connection could not be established with host ' . $this->_params['host'] .
' [' . $errstr . ' #' . $errno . ']'...
и вот моя конфигурация для почты:
'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 587,
'from' => array('address' => '[email protected]', 'name' => 'some'),
'encryption' => 'tls',
'username' => '[email protected]',
'password' => 'mypassword',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false
Я использую общий хост, и порт 587 на локальном хосте открыт.