PHP 클래스 SlightPHP\SMTP

파일 보기 프로젝트 열기: hetao29/slightphp

공개 프로퍼티들

프로퍼티 타입 설명
$CRLF string @var string
$SMTP_PORT integer @var int
$do_debug boolean @var bool
$do_verp boolean @var bool

공개 메소드들

메소드 설명
Authenticate ( $username, $password ) : boolean Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.
Close ( ) : void Closes the socket and cleans up the state of the class.
Connect ( $host, $port, $tval = 30 ) : boolean Connect to the server specified on the port specified.
Connected ( ) : boolean Returns true if connected to a server otherwise false
Data ( $msg_data ) : boolean 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 with the message headers and the message body being seperated by and additional .
Expand ( $name ) : string 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.
Hello ( $host = "" ) : boolean Sends the HELO command to the smtp server.
Help ( $keyword = "" ) : string 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.
Mail ( $from ) : boolean 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.
Noop ( ) : boolean Sends the command NOOP to the SMTP server.
Quit ( $close_on_error = true ) : boolean 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.
Recipient ( $to ) : boolean Sends the command RCPT to the SMTP server with the TO: argument of $to.
Reset ( ) : boolean Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.
Send ( $from ) : boolean 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.
SendAndMail ( $from ) : boolean 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.
SendOrMail ( $from ) : boolean 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.
StartTLS ( ) : boolean Initiate a TSL communication with the server.
Turn ( ) : boolean 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
Verify ( $name ) : integer Verifies that the name is recognized by the server.
__construct ( ) : void Initialize the class so that the data is in a known state.

비공개 메소드들

메소드 설명
SendHello ( $hello, $host ) : boolean Sends a HELO/EHLO command.
get_lines ( ) : string Read in as many lines as possible either before eof or socket timeout occurs on the operation.

메소드 상세

Authenticate() 공개 메소드

Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.
public Authenticate ( $username, $password ) : boolean
리턴 boolean

Close() 공개 메소드

It is not considered good to use this function without first trying to use QUIT.
public Close ( ) : void
리턴 void

Connect() 공개 메소드

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
public Connect ( $host, $port, $tval = 30 ) : boolean
리턴 boolean

Connected() 공개 메소드

Returns true if connected to a server otherwise false
public Connected ( ) : boolean
리턴 boolean

Data() 공개 메소드

Implements rfc 821: DATA SMTP CODE INTERMEDIATE: 354 [data] . SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 552,554,451,452 SMTP CODE FAILURE: 451,554 SMTP CODE ERROR : 500,501,503,421
public Data ( $msg_data ) : boolean
리턴 boolean

Expand() 공개 메소드

Each value in the array returned has the format of: [ ] The definition of is defined in rfc 821 Implements rfc 821: EXPN SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 550 SMTP CODE ERROR : 500,501,502,504,421
public Expand ( $name ) : string
리턴 string array

Hello() 공개 메소드

This makes sure that we and the server are in the same known state. Implements from rfc 821: HELO SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 501, 504, 421
public Hello ( $host = "" ) : boolean
리턴 boolean

Help() 공개 메소드

Implements rfc 821: HELP [ ] SMTP CODE SUCCESS: 211,214 SMTP CODE ERROR : 500,501,502,504,421
public Help ( $keyword = "" ) : string
리턴 string

Mail() 공개 메소드

Implements rfc 821: MAIL FROM: SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,421
public Mail ( $from ) : boolean
리턴 boolean

Noop() 공개 메소드

Implements from rfc 821: NOOP SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 421
public Noop ( ) : boolean
리턴 boolean

Quit() 공개 메소드

Implements from rfc 821: QUIT SMTP CODE SUCCESS: 221 SMTP CODE ERROR : 500
public Quit ( $close_on_error = true ) : boolean
리턴 boolean

Recipient() 공개 메소드

Returns true if the recipient was accepted false if it was rejected. Implements from rfc 821: RCPT TO: SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,552,553,450,451,452 SMTP CODE ERROR : 500,501,503,421
public Recipient ( $to ) : boolean
리턴 boolean

Reset() 공개 메소드

Implements rfc 821: RSET SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500,501,504,421
public Reset ( ) : boolean
리턴 boolean

Send() 공개 메소드

Implements rfc 821: SEND FROM: SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
public Send ( $from ) : boolean
리턴 boolean

SendAndMail() 공개 메소드

Implements rfc 821: SAML FROM: SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
public SendAndMail ( $from ) : boolean
리턴 boolean

SendOrMail() 공개 메소드

Implements rfc 821: SOML FROM: SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
public SendOrMail ( $from ) : boolean
리턴 boolean

StartTLS() 공개 메소드

SMTP CODE 220 Ready to start TLS SMTP CODE 501 Syntax error (no parameters allowed) SMTP CODE 454 TLS not available due to temporary reason
public StartTLS ( ) : boolean
리턴 boolean success

Turn() 공개 메소드

Implements from rfc 821: TURN SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 502 SMTP CODE ERROR : 500, 503
public Turn ( ) : boolean
리턴 boolean

Verify() 공개 메소드

Returns false if the name could not be verified otherwise the response from the server is returned. Implements rfc 821: VRFY SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,553 SMTP CODE ERROR : 500,501,502,421
public Verify ( $name ) : integer
리턴 integer

__construct() 공개 메소드

Initialize the class so that the data is in a known state.
public __construct ( ) : void
리턴 void

프로퍼티 상세

$CRLF 공개적으로 프로퍼티

@var string
public string $CRLF
리턴 string

$SMTP_PORT 공개적으로 프로퍼티

@var int
public int $SMTP_PORT
리턴 integer

$do_debug 공개적으로 프로퍼티

@var bool
public bool $do_debug
리턴 boolean

$do_verp 공개적으로 프로퍼티

@var bool
public bool $do_verp
리턴 boolean