connect() protected method

Creates a connection to the SMTP server and initiates the login procedure.
protected connect ( )
Esempio n. 1
0
 /**
  * Creates a connection to the SMTP server and initiates the login
  * procedure.
  *
  * @todo The @ should be removed when PHP doesn't throw warnings for connect problems
  *
  * @throws ezcMailTransportSmtpException
  *         if no connection could be made
  *         or if the login failed
  * @throws ezcBaseExtensionNotFoundException
  *         if trying to use SSL and the openssl extension is not installed
  */
 public function connect()
 {
     parent::connect();
 }