You are here

10 calls to SMTP::get_lines() in SMTP Authentication Support 7.2

SMTP::Authenticate in ./smtp.transport.inc
Performs SMTP authentication. Must be run after running the Hello() method. Returns TRUE if successfully authenticated. @access public
SMTP::Connect in ./smtp.transport.inc
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…
SMTP::Data in ./smtp.transport.inc
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…
SMTP::Mail in ./smtp.transport.inc
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.
SMTP::Quit in ./smtp.transport.inc
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.
SMTP::Recipient in ./smtp.transport.inc
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.
SMTP::Reset in ./smtp.transport.inc
Sends the RSET command to abort and transaction that is currently in progress. Returns TRUE if successful FALSE otherwise.
SMTP::SendAndMail in ./smtp.transport.inc
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…
SMTP::SendHello in ./smtp.transport.inc
Sends a HELO/EHLO command. @access private
SMTP::StartTLS in ./smtp.transport.inc
Initiate a TLS communication with the server.