|
Previous Page |
Solar_Smtp_Adapter_PlainAuth |
Next Page |
Properties
Public
None.
Protected
$_Solar_Smtp_Adapter
(array) User-defined configuration parameters.
Inherited from Solar_Smtp_Adapter.
$_Solar_Smtp_Adapter_PlainAuth
(array) User-defined confiuration values.
Keys are:
username- The username for authentication.
password- The password for authentication.
$_auth
(bool) Has SMTP AUTH has been issued successfully?
Inherited from Solar_Smtp_Adapter.
$_client
(string) The client address making SMTP request (that is, the local machine).
Inherited from Solar_Smtp_Adapter.
$_config
(array) Collection point for configuration values.
Inherited from Solar_Base.
Note that you do not define config defaults in $_config directly.
<?php
// DO NOT DO THIS
protected $_config = array(
'foo' => 'bar',
'baz' => 'dib',
);
?>
Instead, define config defaults in a protected property named for the class, withan underscore prefix.
For exmple, a "Vendor_Class_Name" class would define the default config array in "$_Vendor_Class_Name". This convention lets child classes inherit parent config keys and values.
<?php
// DO THIS INSTEAD
protected $_Vendor_Class_Name = array(
'foo' => 'bar',
'baz' => 'dib',
);
?>
$_conn
(resource) Connection resource.
Inherited from Solar_Smtp_Adapter.
$_crlf
(string) Line-ending string; default "\r\n".
Inherited from Solar_Smtp_Adapter.
$_data
(bool) Has SMTP DATA has been issued successfully?
Inherited from Solar_Smtp_Adapter.
$_helo
(bool) Has a session been started (that is, has HELO/EHLO been issued)?
Inherited from Solar_Smtp_Adapter.
$_host
(string) Hostname or IP address of SMTP server.
Inherited from Solar_Smtp_Adapter.
$_log
(array()) Log of requests and response strings.
Inherited from Solar_Smtp_Adapter.
$_mail
(bool) Has SMTP MAIL been issued?
Inherited from Solar_Smtp_Adapter.
$_password
(string) Password for authentication.
$_port
(int) Connect to SMTP server on this port.
Inherited from Solar_Smtp_Adapter.
$_rcpt
(bool) Has SMTP RCPT been issued?
Inherited from Solar_Smtp_Adapter.
$_secure
(string) The security protocol for this connection, if any.
Inherited from Solar_Smtp_Adapter.
Values are 'ssl' and 'tls'.
$_timeout
(int) Timeout in seconds for initiating session; default 30.
Inherited from Solar_Smtp_Adapter.
$_transport
(string) The transport method for the socket; default is 'tcp'.
Inherited from Solar_Smtp_Adapter.
Values are 'tcp' and 'ssl'.
$_username
(string) Username for authentication.
Private
None.