2 ////////////////////////////////////////////////////
3 // SMTP - PHP SMTP class
7 // Define an SMTP class that can be used to connect
8 // and communicate with any SMTP server. It implements
9 // all the SMTP functions defined in RFC821 except TURN.
13 // License: LGPL, see LICENSE
14 ////////////////////////////////////////////////////
17 * SMTP is rfc 821 compliant and implements all the rfc 821 SMTP
18 * commands except TURN which will always return a not implemented
19 * error. SMTP also provides some utility methods for sending mail
33 * SMTP reply line ending
39 * Sets whether debugging is turned on
42 var $do_debug; # the level of debug to perform
47 var $smtp_conn; # the socket to the server
48 var $error; # error if any on the last call
49 var $helo_rply; # the reply the server sent to us for HELO
53 * Initialize the class so that the data is in a known state.
60 $this->helo_rply
= null;
65 /*************************************************************
66 * CONNECTION FUNCTIONS *
67 ***********************************************************/
70 * Connect to the server specified on the port specified.
71 * If the port is not specified use the default SMTP_PORT.
72 * If tval is specified then a connection will try and be
73 * established with the server for that number of seconds.
74 * If tval is not specified the default is 30 seconds to
75 * try on the connection.
77 * SMTP CODE SUCCESS: 220
78 * SMTP CODE FAILURE: 421
82 function Connect($host,$port=0,$tval=30) {
83 # set the error val to null so there is no confusion
86 # make sure we are __not__ connected
87 if($this->connected()) {
88 # ok we are connected! what should we do?
89 # for now we will just give an error saying we
90 # are already connected
92 array("error" => "Already connected to a server");
97 $port = $this->SMTP_PORT
;
100 #connect to the smtp server
101 $this->smtp_conn
= fsockopen($host, # the host of the server
102 $port, # the port to use
103 $errno, # error number if any
104 $errstr, # error message if any
105 $tval); # give up after ? secs
106 # verify we connected properly
107 if(empty($this->smtp_conn
)) {
108 $this->error
= array("error" => "Failed to connect to server",
110 "errstr" => $errstr);
111 if($this->do_debug
>= 1) {
112 echo "SMTP -> ERROR: " . $this->error
["error"] .
113 ": $errstr ($errno)" . $this->CRLF
;
118 # sometimes the SMTP server takes a little longer to respond
119 # so we will give it a longer timeout for the first read
120 // Windows still does not have support for this timeout function
121 if(substr(PHP_OS
, 0, 3) != "WIN")
122 socket_set_timeout($this->smtp_conn
, $tval, 0);
124 # get any announcement stuff
125 $announce = $this->get_lines();
127 # set the timeout of any socket functions at 1/10 of a second
128 //if(function_exists("socket_set_timeout"))
129 // socket_set_timeout($this->smtp_conn, 0, 100000);
131 if($this->do_debug
>= 2) {
132 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $announce;
139 * Performs SMTP authentication. Must be run after running the
140 * Hello() method. Returns true if successfully authenticated.
144 function Authenticate($username, $password) {
145 // Start authentication
146 fputs($this->smtp_conn
,"AUTH LOGIN" . $this->CRLF
);
148 $rply = $this->get_lines();
149 $code = substr($rply,0,3);
153 array("error" => "AUTH not accepted from server",
154 "smtp_code" => $code,
155 "smtp_msg" => substr($rply,4));
156 if($this->do_debug
>= 1) {
157 echo "SMTP -> ERROR: " . $this->error
["error"] .
158 ": " . $rply . $this->CRLF
;
163 // Send encoded username
164 fputs($this->smtp_conn
, base64_encode($username) . $this->CRLF
);
166 $rply = $this->get_lines();
167 $code = substr($rply,0,3);
171 array("error" => "Username not accepted from server",
172 "smtp_code" => $code,
173 "smtp_msg" => substr($rply,4));
174 if($this->do_debug
>= 1) {
175 echo "SMTP -> ERROR: " . $this->error
["error"] .
176 ": " . $rply . $this->CRLF
;
181 // Send encoded password
182 fputs($this->smtp_conn
, base64_encode($password) . $this->CRLF
);
184 $rply = $this->get_lines();
185 $code = substr($rply,0,3);
189 array("error" => "Password not accepted from server",
190 "smtp_code" => $code,
191 "smtp_msg" => substr($rply,4));
192 if($this->do_debug
>= 1) {
193 echo "SMTP -> ERROR: " . $this->error
["error"] .
194 ": " . $rply . $this->CRLF
;
203 * Returns true if connected to a server otherwise false
207 function Connected() {
208 if(!empty($this->smtp_conn
)) {
209 $sock_status = socket_get_status($this->smtp_conn
);
210 if($sock_status["eof"]) {
211 # hmm this is an odd situation... the socket is
212 # valid but we aren't connected anymore
213 if($this->do_debug
>= 1) {
214 echo "SMTP -> NOTICE:" . $this->CRLF
.
215 "EOF caught while checking if connected";
220 return true; # everything looks good
226 * Closes the socket and cleans up the state of the class.
227 * It is not considered good to use this function without
228 * first trying to use QUIT.
233 $this->error
= null; # so there is no confusion
234 $this->helo_rply
= null;
235 if(!empty($this->smtp_conn
)) {
236 # close the connection and cleanup
237 fclose($this->smtp_conn
);
238 $this->smtp_conn
= 0;
243 /***************************************************************
245 *************************************************************/
248 * Issues a data command and sends the msg_data to the server
249 * finializing the mail transaction. $msg_data is the message
250 * that is to be send with the headers. Each header needs to be
251 * on a single line followed by a <CRLF> with the message headers
252 * and the message body being seperated by and additional <CRLF>.
254 * Implements rfc 821: DATA <CRLF>
256 * SMTP CODE INTERMEDIATE: 354
259 * SMTP CODE SUCCESS: 250
260 * SMTP CODE FAILURE: 552,554,451,452
261 * SMTP CODE FAILURE: 451,554
262 * SMTP CODE ERROR : 500,501,503,421
266 function Data($msg_data) {
267 $this->error
= null; # so no confusion is caused
269 if(!$this->connected()) {
270 $this->error
= array(
271 "error" => "Called Data() without being connected");
275 fputs($this->smtp_conn
,"DATA" . $this->CRLF
);
277 $rply = $this->get_lines();
278 $code = substr($rply,0,3);
280 if($this->do_debug
>= 2) {
281 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
286 array("error" => "DATA command not accepted from server",
287 "smtp_code" => $code,
288 "smtp_msg" => substr($rply,4));
289 if($this->do_debug
>= 1) {
290 echo "SMTP -> ERROR: " . $this->error
["error"] .
291 ": " . $rply . $this->CRLF
;
296 # the server is ready to accept data!
297 # according to rfc 821 we should not send more than 1000
299 # characters on a single line so we will break the data up
300 # into lines by \r and/or \n then if needed we will break
301 # each of those into smaller lines to fit within the limit.
302 # in addition we will be looking for lines that start with
303 # a period '.' and append and additional period '.' to that
304 # line. NOTE: this does not count towards are limit.
306 # normalize the line breaks so we know the explode works
307 $msg_data = str_replace("\r\n","\n",$msg_data);
308 $msg_data = str_replace("\r","\n",$msg_data);
309 $lines = explode("\n",$msg_data);
311 # we need to find a good way to determine is headers are
312 # in the msg_data or if it is a straight msg body
313 # currently I'm assuming rfc 822 definitions of msg headers
314 # and if the first field of the first line (':' sperated)
315 # does not contain a space then it _should_ be a header
316 # and we can process all lines before a blank "" line as
318 $field = substr($lines[0],0,strpos($lines[0],":"));
320 if(!empty($field) && !strstr($field," ")) {
324 $max_line_length = 998; # used below; set here for ease in change
326 while(list(,$line) = @each
($lines)) {
328 if($line == "" && $in_headers) {
331 # ok we need to break this line up into several
333 while(strlen($line) > $max_line_length) {
334 $pos = strrpos(substr($line,0,$max_line_length)," ");
336 # Patch to fix DOS attack
338 $pos = $max_line_length - 1;
341 $lines_out[] = substr($line,0,$pos);
342 $line = substr($line,$pos +
1);
343 # if we are processing headers we need to
344 # add a LWSP-char to the front of the new line
345 # rfc 822 on long msg headers
347 $line = "\t" . $line;
350 $lines_out[] = $line;
352 # now send the lines to the server
353 while(list(,$line_out) = @each
($lines_out)) {
354 if(strlen($line_out) > 0)
356 if(substr($line_out, 0, 1) == ".") {
357 $line_out = "." . $line_out;
360 fputs($this->smtp_conn
,$line_out . $this->CRLF
);
364 # ok all the message data has been sent so lets get this
366 fputs($this->smtp_conn
, $this->CRLF
. "." . $this->CRLF
);
368 $rply = $this->get_lines();
369 $code = substr($rply,0,3);
371 if($this->do_debug
>= 2) {
372 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
377 array("error" => "DATA not accepted from server",
378 "smtp_code" => $code,
379 "smtp_msg" => substr($rply,4));
380 if($this->do_debug
>= 1) {
381 echo "SMTP -> ERROR: " . $this->error
["error"] .
382 ": " . $rply . $this->CRLF
;
390 * Expand takes the name and asks the server to list all the
391 * people who are members of the _list_. Expand will return
392 * back and array of the result or false if an error occurs.
393 * Each value in the array returned has the format of:
394 * [ <full-name> <sp> ] <path>
395 * The definition of <path> is defined in rfc 821
397 * Implements rfc 821: EXPN <SP> <string> <CRLF>
399 * SMTP CODE SUCCESS: 250
400 * SMTP CODE FAILURE: 550
401 * SMTP CODE ERROR : 500,501,502,504,421
403 * @return string array
405 function Expand($name) {
406 $this->error
= null; # so no confusion is caused
408 if(!$this->connected()) {
409 $this->error
= array(
410 "error" => "Called Expand() without being connected");
414 fputs($this->smtp_conn
,"EXPN " . $name . $this->CRLF
);
416 $rply = $this->get_lines();
417 $code = substr($rply,0,3);
419 if($this->do_debug
>= 2) {
420 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
425 array("error" => "EXPN not accepted from server",
426 "smtp_code" => $code,
427 "smtp_msg" => substr($rply,4));
428 if($this->do_debug
>= 1) {
429 echo "SMTP -> ERROR: " . $this->error
["error"] .
430 ": " . $rply . $this->CRLF
;
435 # parse the reply and place in our array to return to user
436 $entries = explode($this->CRLF
,$rply);
437 while(list(,$l) = @each
($entries)) {
438 $list[] = substr($l,4);
445 * Sends the HELO command to the smtp server.
446 * This makes sure that we and the server are in
447 * the same known state.
449 * Implements from rfc 821: HELO <SP> <domain> <CRLF>
451 * SMTP CODE SUCCESS: 250
452 * SMTP CODE ERROR : 500, 501, 504, 421
456 function Hello($host="") {
457 $this->error
= null; # so no confusion is caused
459 if(!$this->connected()) {
460 $this->error
= array(
461 "error" => "Called Hello() without being connected");
465 # if a hostname for the HELO wasn't specified determine
466 # a suitable one to send
468 # we need to determine some sort of appopiate default
469 # to send to the server
473 // Send extended hello first (RFC 2821)
474 if(!$this->SendHello("EHLO", $host))
476 if(!$this->SendHello("HELO", $host))
484 * Sends a HELO/EHLO command.
488 function SendHello($hello, $host) {
489 fputs($this->smtp_conn
, $hello . " " . $host . $this->CRLF
);
491 $rply = $this->get_lines();
492 $code = substr($rply,0,3);
494 if($this->do_debug
>= 2) {
495 echo "SMTP -> FROM SERVER: " . $this->CRLF
. $rply;
500 array("error" => $hello . " not accepted from server",
501 "smtp_code" => $code,
502 "smtp_msg" => substr($rply,4));
503 if($this->do_debug
>= 1) {
504 echo "SMTP -> ERROR: " . $this->error
["error"] .
505 ": " . $rply . $this->CRLF
;
510 $this->helo_rply
= $rply;
516 * Gets help information on the keyword specified. If the keyword
517 * is not specified then returns generic help, ussually contianing
518 * A list of keywords that help is available on. This function
519 * returns the results back to the user. It is up to the user to
520 * handle the returned data. If an error occurs then false is
521 * returned with $this->error set appropiately.
523 * Implements rfc 821: HELP [ <SP> <string> ] <CRLF>
525 * SMTP CODE SUCCESS: 211,214
526 * SMTP CODE ERROR : 500,501,502,504,421
530 function Help($keyword="") {
531 $this->error
= null; # to avoid confusion
533 if(!$this->connected()) {
534 $this->error
= array(
535 "error" => "Called Help() without being connected");
540 if(!empty($keyword)) {
541 $extra = " " . $keyword;
544 fputs($this->smtp_conn
,"HELP" . $extra . $this->CRLF
);
546 $rply = $this->get_lines();
547 $code = substr($rply,0,3);
549 if($this->do_debug
>= 2) {
550 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
553 if($code != 211 && $code != 214) {
555 array("error" => "HELP not accepted from server",
556 "smtp_code" => $code,
557 "smtp_msg" => substr($rply,4));
558 if($this->do_debug
>= 1) {
559 echo "SMTP -> ERROR: " . $this->error
["error"] .
560 ": " . $rply . $this->CRLF
;
569 * Starts a mail transaction from the email address specified in
570 * $from. Returns true if successful or false otherwise. If True
571 * the mail transaction is started and then one or more Recipient
572 * commands may be called followed by a Data command.
574 * Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>
576 * SMTP CODE SUCCESS: 250
577 * SMTP CODE SUCCESS: 552,451,452
578 * SMTP CODE SUCCESS: 500,501,421
582 function Mail($from) {
583 $this->error
= null; # so no confusion is caused
585 if(!$this->connected()) {
586 $this->error
= array(
587 "error" => "Called Mail() without being connected");
591 fputs($this->smtp_conn
,"MAIL FROM:<" . $from . ">" . $this->CRLF
);
593 $rply = $this->get_lines();
594 $code = substr($rply,0,3);
596 if($this->do_debug
>= 2) {
597 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
602 array("error" => "MAIL not accepted from server",
603 "smtp_code" => $code,
604 "smtp_msg" => substr($rply,4));
605 if($this->do_debug
>= 1) {
606 echo "SMTP -> ERROR: " . $this->error
["error"] .
607 ": " . $rply . $this->CRLF
;
615 * Sends the command NOOP to the SMTP server.
617 * Implements from rfc 821: NOOP <CRLF>
619 * SMTP CODE SUCCESS: 250
620 * SMTP CODE ERROR : 500, 421
625 $this->error
= null; # so no confusion is caused
627 if(!$this->connected()) {
628 $this->error
= array(
629 "error" => "Called Noop() without being connected");
633 fputs($this->smtp_conn
,"NOOP" . $this->CRLF
);
635 $rply = $this->get_lines();
636 $code = substr($rply,0,3);
638 if($this->do_debug
>= 2) {
639 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
644 array("error" => "NOOP not accepted from server",
645 "smtp_code" => $code,
646 "smtp_msg" => substr($rply,4));
647 if($this->do_debug
>= 1) {
648 echo "SMTP -> ERROR: " . $this->error
["error"] .
649 ": " . $rply . $this->CRLF
;
657 * Sends the quit command to the server and then closes the socket
658 * if there is no error or the $close_on_error argument is true.
660 * Implements from rfc 821: QUIT <CRLF>
662 * SMTP CODE SUCCESS: 221
663 * SMTP CODE ERROR : 500
667 function Quit($close_on_error=true) {
668 $this->error
= null; # so there is no confusion
670 if(!$this->connected()) {
671 $this->error
= array(
672 "error" => "Called Quit() without being connected");
676 # send the quit command to the server
677 fputs($this->smtp_conn
,"quit" . $this->CRLF
);
679 # get any good-bye messages
680 $byemsg = $this->get_lines();
682 if($this->do_debug
>= 2) {
683 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $byemsg;
689 $code = substr($byemsg,0,3);
691 # use e as a tmp var cause Close will overwrite $this->error
692 $e = array("error" => "SMTP server rejected quit command",
693 "smtp_code" => $code,
694 "smtp_rply" => substr($byemsg,4));
696 if($this->do_debug
>= 1) {
697 echo "SMTP -> ERROR: " . $e["error"] . ": " .
698 $byemsg . $this->CRLF
;
702 if(empty($e) ||
$close_on_error) {
710 * Sends the command RCPT to the SMTP server with the TO: argument of $to.
711 * Returns true if the recipient was accepted false if it was rejected.
713 * Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>
715 * SMTP CODE SUCCESS: 250,251
716 * SMTP CODE FAILURE: 550,551,552,553,450,451,452
717 * SMTP CODE ERROR : 500,501,503,421
721 function Recipient($to) {
722 $this->error
= null; # so no confusion is caused
724 if(!$this->connected()) {
725 $this->error
= array(
726 "error" => "Called Recipient() without being connected");
730 fputs($this->smtp_conn
,"RCPT TO:<" . $to . ">" . $this->CRLF
);
732 $rply = $this->get_lines();
733 $code = substr($rply,0,3);
735 if($this->do_debug
>= 2) {
736 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
739 if($code != 250 && $code != 251) {
741 array("error" => "RCPT not accepted from server",
742 "smtp_code" => $code,
743 "smtp_msg" => substr($rply,4));
744 if($this->do_debug
>= 1) {
745 echo "SMTP -> ERROR: " . $this->error
["error"] .
746 ": " . $rply . $this->CRLF
;
754 * Sends the RSET command to abort and transaction that is
755 * currently in progress. Returns true if successful false
758 * Implements rfc 821: RSET <CRLF>
760 * SMTP CODE SUCCESS: 250
761 * SMTP CODE ERROR : 500,501,504,421
766 $this->error
= null; # so no confusion is caused
768 if(!$this->connected()) {
769 $this->error
= array(
770 "error" => "Called Reset() without being connected");
774 fputs($this->smtp_conn
,"RSET" . $this->CRLF
);
776 $rply = $this->get_lines();
777 $code = substr($rply,0,3);
779 if($this->do_debug
>= 2) {
780 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
785 array("error" => "RSET failed",
786 "smtp_code" => $code,
787 "smtp_msg" => substr($rply,4));
788 if($this->do_debug
>= 1) {
789 echo "SMTP -> ERROR: " . $this->error
["error"] .
790 ": " . $rply . $this->CRLF
;
799 * Starts a mail transaction from the email address specified in
800 * $from. Returns true if successful or false otherwise. If True
801 * the mail transaction is started and then one or more Recipient
802 * commands may be called followed by a Data command. This command
803 * will send the message to the users terminal if they are logged
806 * Implements rfc 821: SEND <SP> FROM:<reverse-path> <CRLF>
808 * SMTP CODE SUCCESS: 250
809 * SMTP CODE SUCCESS: 552,451,452
810 * SMTP CODE SUCCESS: 500,501,502,421
814 function Send($from) {
815 $this->error
= null; # so no confusion is caused
817 if(!$this->connected()) {
818 $this->error
= array(
819 "error" => "Called Send() without being connected");
823 fputs($this->smtp_conn
,"SEND FROM:" . $from . $this->CRLF
);
825 $rply = $this->get_lines();
826 $code = substr($rply,0,3);
828 if($this->do_debug
>= 2) {
829 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
834 array("error" => "SEND not accepted from server",
835 "smtp_code" => $code,
836 "smtp_msg" => substr($rply,4));
837 if($this->do_debug
>= 1) {
838 echo "SMTP -> ERROR: " . $this->error
["error"] .
839 ": " . $rply . $this->CRLF
;
847 * Starts a mail transaction from the email address specified in
848 * $from. Returns true if successful or false otherwise. If True
849 * the mail transaction is started and then one or more Recipient
850 * commands may be called followed by a Data command. This command
851 * will send the message to the users terminal if they are logged
852 * in and send them an email.
854 * Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF>
856 * SMTP CODE SUCCESS: 250
857 * SMTP CODE SUCCESS: 552,451,452
858 * SMTP CODE SUCCESS: 500,501,502,421
862 function SendAndMail($from) {
863 $this->error
= null; # so no confusion is caused
865 if(!$this->connected()) {
866 $this->error
= array(
867 "error" => "Called SendAndMail() without being connected");
871 fputs($this->smtp_conn
,"SAML FROM:" . $from . $this->CRLF
);
873 $rply = $this->get_lines();
874 $code = substr($rply,0,3);
876 if($this->do_debug
>= 2) {
877 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
882 array("error" => "SAML not accepted from server",
883 "smtp_code" => $code,
884 "smtp_msg" => substr($rply,4));
885 if($this->do_debug
>= 1) {
886 echo "SMTP -> ERROR: " . $this->error
["error"] .
887 ": " . $rply . $this->CRLF
;
895 * Starts a mail transaction from the email address specified in
896 * $from. Returns true if successful or false otherwise. If True
897 * the mail transaction is started and then one or more Recipient
898 * commands may be called followed by a Data command. This command
899 * will send the message to the users terminal if they are logged
900 * in or mail it to them if they are not.
902 * Implements rfc 821: SOML <SP> FROM:<reverse-path> <CRLF>
904 * SMTP CODE SUCCESS: 250
905 * SMTP CODE SUCCESS: 552,451,452
906 * SMTP CODE SUCCESS: 500,501,502,421
910 function SendOrMail($from) {
911 $this->error
= null; # so no confusion is caused
913 if(!$this->connected()) {
914 $this->error
= array(
915 "error" => "Called SendOrMail() without being connected");
919 fputs($this->smtp_conn
,"SOML FROM:" . $from . $this->CRLF
);
921 $rply = $this->get_lines();
922 $code = substr($rply,0,3);
924 if($this->do_debug
>= 2) {
925 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
930 array("error" => "SOML not accepted from server",
931 "smtp_code" => $code,
932 "smtp_msg" => substr($rply,4));
933 if($this->do_debug
>= 1) {
934 echo "SMTP -> ERROR: " . $this->error
["error"] .
935 ": " . $rply . $this->CRLF
;
943 * This is an optional command for SMTP that this class does not
944 * support. This method is here to make the RFC821 Definition
945 * complete for this class and __may__ be implimented in the future
947 * Implements from rfc 821: TURN <CRLF>
949 * SMTP CODE SUCCESS: 250
950 * SMTP CODE FAILURE: 502
951 * SMTP CODE ERROR : 500, 503
956 $this->error
= array("error" => "This method, TURN, of the SMTP ".
957 "is not implemented");
958 if($this->do_debug
>= 1) {
959 echo "SMTP -> NOTICE: " . $this->error
["error"] . $this->CRLF
;
965 * Verifies that the name is recognized by the server.
966 * Returns false if the name could not be verified otherwise
967 * the response from the server is returned.
969 * Implements rfc 821: VRFY <SP> <string> <CRLF>
971 * SMTP CODE SUCCESS: 250,251
972 * SMTP CODE FAILURE: 550,551,553
973 * SMTP CODE ERROR : 500,501,502,421
977 function Verify($name) {
978 $this->error
= null; # so no confusion is caused
980 if(!$this->connected()) {
981 $this->error
= array(
982 "error" => "Called Verify() without being connected");
986 fputs($this->smtp_conn
,"VRFY " . $name . $this->CRLF
);
988 $rply = $this->get_lines();
989 $code = substr($rply,0,3);
991 if($this->do_debug
>= 2) {
992 echo "SMTP -> FROM SERVER:" . $this->CRLF
. $rply;
995 if($code != 250 && $code != 251) {
997 array("error" => "VRFY failed on name '$name'",
998 "smtp_code" => $code,
999 "smtp_msg" => substr($rply,4));
1000 if($this->do_debug
>= 1) {
1001 echo "SMTP -> ERROR: " . $this->error
["error"] .
1002 ": " . $rply . $this->CRLF
;
1009 /*******************************************************************
1010 * INTERNAL FUNCTIONS *
1011 ******************************************************************/
1014 * Read in as many lines as possible
1015 * either before eof or socket timeout occurs on the operation.
1016 * With SMTP we can tell if we have more lines to read if the
1017 * 4th character is '-' symbol. If it is a space then we don't
1018 * need to read anything else.
1022 function get_lines() {
1024 while($str = fgets($this->smtp_conn
,515)) {
1025 if($this->do_debug
>= 4) {
1026 echo "SMTP -> get_lines(): \$data was \"$data\"" .
1028 echo "SMTP -> get_lines(): \$str is \"$str\"" .
1032 if($this->do_debug
>= 4) {
1033 echo "SMTP -> get_lines(): \$data is \"$data\"" . $this->CRLF
;
1035 # if the 4th character is a space then we are done reading
1036 # so just break the loop
1037 if(substr($str,3,1) == " ") { break; }