You are here

15 calls to SMTP::get_lines() in SMTP Authentication Support 5

SMTP::Authenticate in ./smtp.module
Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated. @access public
SMTP::Connect in ./smtp.module
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.module
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::Expand in ./smtp.module
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>…
SMTP::Help in ./smtp.module
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…
SMTP::Mail in ./smtp.module
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::Noop in ./smtp.module
Sends the command NOOP to the SMTP server.
SMTP::Quit in ./smtp.module
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.module
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.module
Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.
SMTP::Send in ./smtp.module
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::SendAndMail in ./smtp.module
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.module
Sends a HELO/EHLO command. @access private
SMTP::SendOrMail in ./smtp.module
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::Verify in ./smtp.module
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.