Version 1.0a

This commit is contained in:
nemunaire 2008-11-17 12:00:00 +01:00
commit 6a19363758
908 changed files with 22193 additions and 17408 deletions

View file

@ -28,13 +28,13 @@ class SMTP
* @var int
*/
var $SMTP_PORT = 25;
/**
* SMTP reply line ending
* @var string
*/
var $CRLF = "\r\n";
/**
* Sets whether debugging is turned on
* @var bool
@ -98,7 +98,7 @@ class SMTP
}
#connect to the smtp server
$this->smtp_conn = fsockopen($host, # the host of the server
@$this->smtp_conn = fsockopen($host, # the host of the server
$port, # the port to use
$errno, # error number if any
$errstr, # error message if any
@ -502,7 +502,7 @@ class SMTP
}
$this->helo_rply = $rply;
return true;
}