Authenticate()
Close()
Connect()
Connected()
Data()
Expand()
Hello()
Help()
Mail()
Noop()
Quit()
Recipient()
Reset()
SMTP()
Send()
SendAndMail()
SendHello()
SendOrMail()
Turn()
Verify()
get_lines()
$CRLF
$SMTP_PORT
$do_debug
$error
$helo_rply
$smtp_conn
SMTP is rfc 821 compliant and implements all the rfc 821 SMTP commands except TURN which will always return a not implemented error. SMTP also provides some utility methods for sending mail to an SMTP server.
package | PHPMailer |
---|---|
author | Chris Ryan |
Authenticate($username, $password) : bool
access | public |
---|
bool
Close() : void
It is not considered good to use this function without first trying to use QUIT.
access | public |
---|
Connect($host, $port, $tval) : bool
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 |
---|
bool
Connected() : bool
access | private |
---|
bool
Data($msg_data) : bool
Implements rfc 821: DATA
SMTP CODE INTERMEDIATE: 354
[data]
access | public |
---|
bool
Expand($name) : string
Each value in the array returned has the format of:
[
Implements rfc 821: EXPN
SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 550 SMTP CODE ERROR : 500,501,502,504,421
access | public |
---|
string
arrayHello($host) : bool
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
access | public |
---|
bool
Help($keyword) : string
Implements rfc 821: HELP [
SMTP CODE SUCCESS: 211,214 SMTP CODE ERROR : 500,501,502,504,421
access | public |
---|
string
Mail($from) : bool
Implements rfc 821: MAIL
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,421
access | public |
---|
bool
Noop() : bool
Implements from rfc 821: NOOP
SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 421
access | public |
---|
bool
Quit($close_on_error) : bool
Implements from rfc 821: QUIT
SMTP CODE SUCCESS: 221 SMTP CODE ERROR : 500
access | public |
---|
bool
Recipient($to) : bool
Returns true if the recipient was accepted false if it was rejected.
Implements from rfc 821: RCPT
SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,552,553,450,451,452 SMTP CODE ERROR : 500,501,503,421
access | public |
---|
bool
Reset() : bool
Implements rfc 821: RSET
SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500,501,504,421
access | public |
---|
bool
SMTP() : void
access | public |
---|
Send($from) : bool
Implements rfc 821: SEND
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
access | public |
---|
bool
SendAndMail($from) : bool
Implements rfc 821: SAML
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
access | public |
---|
bool
SendHello($hello, $host) : bool
access | private |
---|
bool
SendOrMail($from) : bool
Implements rfc 821: SOML
SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421
access | public |
---|
bool
Turn() : bool
Implements from rfc 821: TURN
SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 502 SMTP CODE ERROR : 500, 503
access | public |
---|
bool
Verify($name) : int
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
access | public |
---|
int
get_lines() : string
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 |
---|
string
$CRLF
@var string
$SMTP_PORT
@var int
$do_debug
@var bool
$error
$helo_rply
$smtp_conn