And in the line 139:
public function __destruct()
{
if ($this->_connection instanceof Zend_Mail_Protocol_Smtp) {
$this->_connection->quit();
$this->_connection->disconnect();
}
}
We will get: Fatal error: Exception thrown without a stack frame in Unknown on line
0
The real exception is: No connection has been established to smtpserver
Description
First, look here
http://bugs.php.net/bug.php?id=33598&edit=1
this is the php's bug.
And in the line 139:
public function __destruct()
{
if ($this->_connection instanceof Zend_Mail_Protocol_Smtp) {
$this->_connection->quit();
$this->_connection->disconnect();
}
}
We will get: Fatal error: Exception thrown without a stack frame in Unknown on line
0
The real exception is: No connection has been established to smtpserver