MIOLO20
|
Membros públicos | |
SMTP () | |
__construct () | |
Connect ($host, $port=0, $tval=30) | |
Authenticate ($username, $password) | |
Connected () | |
Close () | |
Data ($msg_data) | |
Expand ($name) | |
Hello ($host="") | |
SendHello ($hello, $host) | |
Help ($keyword="") | |
Mail ($from) | |
Noop () | |
Quit ($close_on_error=true) | |
Recipient ($to) | |
Reset () | |
Send ($from) | |
SendAndMail ($from) | |
SendOrMail ($from) | |
Turn () | |
Verify ($name) | |
get_lines () | |
Campos de Dados | |
$SMTP_PORT = 25 | |
$CRLF = "\r\n" | |
$do_debug | |
$smtp_conn | |
$error | |
$helo_rply | |
Definido na linha 24 do ficheiro class.smtp.php.
__construct | ( | ) |
Definido na linha 62 do ficheiro class.smtp.php.
Authenticate | ( | $username, | |
$password ) |
Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated. @access public
Definido na linha 159 do ficheiro class.smtp.php.
Close | ( | ) |
Closes the socket and cleans up the state of the class. It is not considered good to use this function without first trying to use QUIT. @access public
Definido na linha 270 do ficheiro class.smtp.php.
Connect | ( | $host, | |
$port = 0, | |||
$tval = 30 ) |
Connect to the server specified on the port specified. If the port is not specified use the default SMTP_PORT. If tval is specified then a connection will try and be established with the server for that number of seconds. If tval is not specified the default is 30 seconds to try on the connection.
SMTP CODE SUCCESS: 220 SMTP CODE FAILURE: 421 @access public
Definido na linha 88 do ficheiro class.smtp.php.
Connected | ( | ) |
Returns true if connected to a server otherwise false @access private
Definido na linha 238 do ficheiro class.smtp.php.
Data | ( | $msg_data | ) |
Issues a data command and sends the msg_data to the server finializing the mail transaction. $msg_data is the message that is to be send with the headers. Each header needs to be on a single line followed by a <CRLF> with the message headers and the message body being seperated by and additional <CRLF>.
Implements rfc 821: DATA <CRLF>
SMTP CODE INTERMEDIATE: 354 [data] <CRLF>.<CRLF> SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 552,554,451,452 SMTP CODE FAILURE: 451,554 SMTP CODE ERROR : 500,501,503,421 @access public
Definido na linha 306 do ficheiro class.smtp.php.
Expand | ( | $name | ) |
Expand takes the name and asks the server to list all the people who are members of the list. Expand will return back and array of the result or false if an error occurs. Each value in the array returned has the format of: [ <full-name> <sp> ] <path> The definition of <path> is defined in rfc 821
Implements rfc 821: EXPN <SP> <string> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 550 SMTP CODE ERROR : 500,501,502,504,421 @access public
Definido na linha 466 do ficheiro class.smtp.php.
get_lines | ( | ) |
Read in as many lines as possible either before eof or socket timeout occurs on the operation. With SMTP we can tell if we have more lines to read if the 4th character is '-' symbol. If it is a space then we don't need to read anything else. @access private
Definido na linha 1186 do ficheiro class.smtp.php.
Hello | ( | $host = "" | ) |
Sends the HELO command to the smtp server. This makes sure that we and the server are in the same known state.
Implements from rfc 821: HELO <SP> <domain> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 501, 504, 421 @access public
Definido na linha 526 do ficheiro class.smtp.php.
Help | ( | $keyword = "" | ) |
Gets help information on the keyword specified. If the keyword is not specified then returns generic help, ussually contianing A list of keywords that help is available on. This function returns the results back to the user. It is up to the user to handle the returned data. If an error occurs then false is returned with $this->error set appropiately.
Implements rfc 821: HELP [ <SP> <string> ] <CRLF>
SMTP CODE SUCCESS: 211,214 SMTP CODE ERROR : 500,501,502,504,421 @access public
Definido na linha 609 do ficheiro class.smtp.php.
( | $from | ) |
Starts a mail transaction from the email address specified in $from. Returns true if successful or false otherwise. If True the mail transaction is started and then one or more Recipient commands may be called followed by a Data command.
Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,421 @access public
Definido na linha 670 do ficheiro class.smtp.php.
Noop | ( | ) |
Sends the command NOOP to the SMTP server.
Implements from rfc 821: NOOP <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 421 @access public
Definido na linha 720 do ficheiro class.smtp.php.
Quit | ( | $close_on_error = true | ) |
Sends the quit command to the server and then closes the socket if there is no error or the $close_on_error argument is true.
Implements from rfc 821: QUIT <CRLF>
SMTP CODE SUCCESS: 221 SMTP CODE ERROR : 500 @access public
Definido na linha 771 do ficheiro class.smtp.php.
Recipient | ( | $to | ) |
Sends the command RCPT to the SMTP server with the TO: argument of $to. Returns true if the recipient was accepted false if it was rejected.
Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>
SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,552,553,450,451,452 SMTP CODE ERROR : 500,501,503,421 @access public
Definido na linha 835 do ficheiro class.smtp.php.
Reset | ( | ) |
Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.
Implements rfc 821: RSET <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500,501,504,421 @access public
Definido na linha 887 do ficheiro class.smtp.php.
Send | ( | $from | ) |
Starts a mail transaction from the email address specified in $from. Returns true if successful or false otherwise. If True the mail transaction is started and then one or more Recipient commands may be called followed by a Data command. This command will send the message to the users terminal if they are logged in.
Implements rfc 821: SEND <SP> FROM:<reverse-path> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421 @access public
Definido na linha 943 do ficheiro class.smtp.php.
SendAndMail | ( | $from | ) |
Starts a mail transaction from the email address specified in $from. Returns true if successful or false otherwise. If True the mail transaction is started and then one or more Recipient commands may be called followed by a Data command. This command will send the message to the users terminal if they are logged in and send them an email.
Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421 @access public
Definido na linha 999 do ficheiro class.smtp.php.
SendHello | ( | $hello, | |
$host ) |
Sends a HELO/EHLO command. @access private
Definido na linha 560 do ficheiro class.smtp.php.
SendOrMail | ( | $from | ) |
Starts a mail transaction from the email address specified in $from. Returns true if successful or false otherwise. If True the mail transaction is started and then one or more Recipient commands may be called followed by a Data command. This command will send the message to the users terminal if they are logged in or mail it to them if they are not.
Implements rfc 821: SOML <SP> FROM:<reverse-path> <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421 @access public
Definido na linha 1055 do ficheiro class.smtp.php.
SMTP | ( | ) |
#- Initialize the class so that the data is in a known state. @access public
Definido na linha 57 do ficheiro class.smtp.php.
Turn | ( | ) |
This is an optional command for SMTP that this class does not support. This method is here to make the RFC821 Definition complete for this class and may be implimented in the future
Implements from rfc 821: TURN <CRLF>
SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 502 SMTP CODE ERROR : 500, 503 @access public
Definido na linha 1108 do ficheiro class.smtp.php.
Verify | ( | $name | ) |
Verifies that the name is recognized by the server. Returns false if the name could not be verified otherwise the response from the server is returned.
Implements rfc 821: VRFY <SP> <string> <CRLF>
SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,553 SMTP CODE ERROR : 500,501,502,421 @access public
Definido na linha 1133 do ficheiro class.smtp.php.
$CRLF = "\r\n" |
Definido na linha 36 do ficheiro class.smtp.php.
$do_debug |
Definido na linha 42 do ficheiro class.smtp.php.
$error |
Definido na linha 48 do ficheiro class.smtp.php.
$helo_rply |
Definido na linha 49 do ficheiro class.smtp.php.
$smtp_conn |
#+ @access private
Definido na linha 47 do ficheiro class.smtp.php.
$SMTP_PORT = 25 |
Definido na linha 30 do ficheiro class.smtp.php.