Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Zend_Mail_Protocol_Abstract
Provides low-level methods for concrete adapters to communicate with a remote mail server and track requests and responses.
EOL = '\r\n'
Mail default EOL string
TIMEOUT_CONNECTION = '30'
Default timeout in seconds for initiating session
MAXIMUM_LOG = '64'
Maximum of the transaction log
string $_host = ''
Hostname or IP address of remote server
array $_log = 'array'
Log of mail requests and server responses for a session
integer $_port = ''
Port number of connection
string $_request = ''
Last request sent to server
array $_response = ''
Array of server responses to last request
resource $_socket = ''
Socket connection resource
resource $_template = '%d%s'
String template for parsing server responses using sscanf (default: 3 digit code and response string)
Zend_Validate $_validHost = ''
Instance of Zend_Validate to check hostnames
__construct(
string $host
=
127.0.0.1, integer $port
=
null
)
:
void
Constructor.
__destruct(
)
:
void
Class destructor to cleanup open resources
_addLog(
string $value
)
:
void
Add the transaction log
_connect(
string $remote
)
:
boolean
Connect to the server using the supplied transport and target
An example $remote string may be 'tcp://mail.example.com:25' or 'ssh://hostname.com:2222'
_disconnect(
)
:
void
Disconnect from remote host and free resource
_expect(
string|array $code, $timeout
=
null
)
:
string
Parse server response for successful codes
Read the response from the stream and check for expected return code. Throws a Zend_Mail_Protocol_Exception if an unexpected code is returned.
_receive(
$timeout
=
null
)
:
string
Get a line from the stream.
_send(
string $request
)
:
integer|boolean
Send the given request followed by a LINEEND to the server.
connect(
)
:
Create a connection to the remote host
Concrete adapters for this class will implement their own unique connect scripts, using the _connect() method to create the socket resource.
getLog(
)
:
string
Retrieve the transaction log
getRequest(
)
:
string
Retrieve the last client request
getResponse(
)
:
array
Retrieve the last server response
resetLog(
)
:
void
Reset the transaction log