diff --git a/class.phpmailer.php b/class.phpmailer.php index 419b26b6..f31fabd1 100644 --- a/class.phpmailer.php +++ b/class.phpmailer.php @@ -23,6 +23,7 @@ | - Technology Consulting | | - Oursourcing (highly qualified programmers and graphic designers) | '---------------------------------------------------------------------------' +*/ /** * PHPMailer - PHP email transport class @@ -30,8 +31,15 @@ * @package PHPMailer * @author Andy Prevost * @copyright 2004 - 2008 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL) + * @version $Id$ */ +/** + * PHPMailer - PHP email transport class + * @package PHPMailer + * @author Andy Prevost + */ class PHPMailer { ///////////////////////////////////////////////// @@ -314,7 +322,7 @@ class PHPMailer { */ public function IsQmail() { $this->Sendmail = '/var/qmail/bin/sendmail'; - $this->Mailer = 'sendmail'; + $this->Mailer = 'sendmail'; } ///////////////////////////////////////////////// @@ -510,11 +518,12 @@ class PHPMailer { } /** - * Sends mail via SMTP using PhpSMTP (Author: - * Chris Ryan). Returns bool. Returns false if there is a - * bad MAIL FROM, RCPT, or DATA input. + * Sends mail via SMTP using PhpSMTP + * Returns false if there is a bad MAIL FROM, RCPT, or DATA input. + * @uses SMTP * @access public * @return bool + * @author Chris Ryan */ public function SmtpSend($header, $body) { include_once($this->PluginDir . 'class.smtp.php'); @@ -578,8 +587,9 @@ class PHPMailer { } /** - * Initiates a connection to an SMTP server. Returns false if the - * operation failed. + * Initiates a connection to an SMTP server. + * Returns false if the operation failed. + * @uses SMTP * @access public * @return bool */ @@ -643,6 +653,7 @@ class PHPMailer { /** * Closes the active SMTP session if one exists. + * @uses SMTP * @return void */ public function SmtpClose() { @@ -1711,7 +1722,7 @@ class PHPMailer { * @access public * @return $message */ - public function MsgHTML($message,$basedir='') { + public function MsgHTML($message, $basedir = '') { preg_match_all("/(src|background)=\"(.*)\"/Ui", $message, $images); if(isset($images[2])) { foreach($images[2] as $i => $url) { diff --git a/class.pop3.php b/class.pop3.php index 0884a825..31c26ecd 100644 --- a/class.pop3.php +++ b/class.pop3.php @@ -23,6 +23,17 @@ | - Technology Consulting | | - Oursourcing (highly qualified programmers and graphic designers) | '---------------------------------------------------------------------------' +*/ + +/** + * PHPMailer - PHP POP Before SMTP Authentication Class + * NOTE: Designed for use with PHP version 5 and up + * @package PHPMailer + * @author Andy Prevost + * @copyright 2004 - 2008 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL) + * @version $Id$ + */ /** * POP Before SMTP Authentication Class diff --git a/class.smtp.php b/class.smtp.php index 360d6afd..430bdc89 100644 --- a/class.smtp.php +++ b/class.smtp.php @@ -23,6 +23,17 @@ | - Technology Consulting | | - Oursourcing (highly qualified programmers and graphic designers) | '---------------------------------------------------------------------------' +*/ + +/** + * PHPMailer - PHP SMTP email transport class + * NOTE: Designed for use with PHP version 5 and up + * @package PHPMailer + * @author Andy Prevost + * @copyright 2004 - 2008 Andy Prevost + * @license http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL) + * @version $Id$ + */ /** * SMTP is rfc 821 compliant and implements all the rfc 821 SMTP @@ -96,7 +107,7 @@ class SMTP { * @access public * @return bool */ - public function Connect($host,$port=0,$tval=30) { + public function Connect($host, $port = 0, $tval = 30) { /* set the error val to null so there is no confusion */ $this->error = null; @@ -154,7 +165,7 @@ class SMTP { } /** - * Initiate a TSL communication with the server. + * Initiate a TLS communication with the server. * * SMTP CODE 220 Ready to start TLS * SMTP CODE 501 Syntax error (no parameters allowed) @@ -520,7 +531,7 @@ class SMTP { * @access public * @return bool */ - public function Hello($host="") { + public function Hello($host = '') { $this->error = null; // so no confusion is caused if(!$this->connected()) { @@ -594,7 +605,7 @@ class SMTP { * @access public * @return string */ - public function Help($keyword="") { + public function Help($keyword = '') { $this->error = null; // to avoid confusion if(!$this->connected()) { @@ -732,7 +743,7 @@ class SMTP { * @access public * @return bool */ - public function Quit($close_on_error=true) { + public function Quit($close_on_error = true) { $this->error = null; // so there is no confusion if(!$this->connected()) { diff --git a/phpdoc/PHPMailer/PHPMailer.html b/phpdoc/PHPMailer/PHPMailer.html deleted file mode 100644 index 87be4024..00000000 --- a/phpdoc/PHPMailer/PHPMailer.html +++ /dev/null @@ -1,1475 +0,0 @@ - - - - - - Docs For Class PHPMailer - - - - -
-

Class PHPMailer

- - -
-
Description
- -
- -

PHPMailer - PHP email transport class

-
    -
  • copyright:

    2001 - 2003 Brent R. Matzelle

  • -
  • author:

    Brent R. Matzelle

  • -
-

- Located in Program_Root/class.phpmailer.php (line 20) -

- - -

-	
-			
-
- - - -
-
Variable Summary
- -
-
-
- string - $AltBody -
-
- string - $Body -
-
- string - $CharSet -
-
- string - $ConfirmReadingTo -
-
- string - $ContentType -
-
- string - $Encoding -
-
- string - $ErrorInfo -
-
- string - $From -
-
- string - $FromName -
-
- string - $Helo -
-
- string - $Host -
-
- string - $Hostname -
-
- string - $Mailer -
-
- string - $Password -
-
- string - $PluginDir -
-
- int - $Port -
-
- int - $Priority -
-
- string - $Sender -
-
- string - $Sendmail -
-
- bool - $SMTPAuth -
-
- bool - $SMTPDebug -
-
- bool - $SMTPKeepAlive -
-
- string - $Subject -
-
- int - $Timeout -
-
- string - $Username -
-
- string - $Version -
-
- int - $WordWrap -
-
-
-
- - -
-
Method Summary
- -
-
- -
- void - AddAddress - (string $address, [string $name = ""]) -
- -
- bool - AddAttachment - (string $path, [string $name = ""], [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
- void - AddBCC - (string $address, [string $name = ""]) -
- -
- void - AddCC - (string $address, [string $name = ""]) -
- -
- void - AddCustomHeader - (mixed $custom_header) -
- -
- bool - AddEmbeddedImage - (string $path, string $cid, [string $name = ""], [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
- void - AddReplyTo - (string $address, [string $name = ""]) -
- -
- void - AddStringAttachment - (string $string, string $filename, [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
- void - ClearAddresses - () -
- -
- void - ClearAllRecipients - () -
- -
- void - ClearAttachments - () -
- -
- void - ClearBCCs - () -
- -
- void - ClearCCs - () -
- -
- void - ClearCustomHeaders - () -
- -
- void - ClearReplyTos - () -
- -
- bool - IsError - () -
- -
- void - IsHTML - (bool $bool) -
- -
- void - IsMail - () -
- -
- void - IsQmail - () -
- -
- void - IsSendmail - () -
- -
- void - IsSMTP - () -
- -
- bool - Send - () -
- -
- bool - SetLanguage - (string $lang_type, [string $lang_path = ""]) -
- -
- void - SmtpClose - () -
-
-
-
- - -
-
Variables
- -
- -
- -
- - string - $AltBody - = "" (line 96) - -
- - -

Sets the text-only body of the message. This automatically sets the email to multipart/alternative. This body can be read by mail clients that do not have HTML email capability such as mutt. Clients that can read HTML will view the normal Body.

- - - - - -
- -
- -
- - string - $Body - = "" (line 87) - -
- - -

Sets the Body of the message. This can be either an HTML or text body.

-

If HTML then run IsHTML(true).

- - - - - -
- -
- -
- - string - $CharSet - = "iso-8859-1" (line 36) - -
- - -

Sets the CharSet of the message.

- - - - - -
- -
- -
- - string - $ConfirmReadingTo - = "" (line 134) - -
- - -

Sets the email address that a reading confirmation will be sent.

- - - - - -
- -
- -
- - string - $ContentType - = "text/plain" (line 42) - -
- - -

Sets the Content-type of the message.

- - - - - -
- -
- -
- - string - $Encoding - = "8bit" (line 49) - -
- - -

Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".

- - - - - -
- -
- -
- - string - $ErrorInfo - = "" (line 55) - -
- - -

Holds the most recent mailer error message.

- - - - - -
- -
- -
- - string - $From - = "root@localhost" (line 61) - -
- - -

Sets the From email address for the message.

- - - - - -
- -
- -
- - string - $FromName - = "Root User" (line 67) - -
- - -

Sets the From name of the message.

- - - - - -
- -
- -
- - string - $Helo - = "" (line 169) - -
- - -

Sets the SMTP HELO of the message (Default is $Hostname).

- - - - - -
- -
- -
- - string - $Host - = "localhost" (line 157) - -
- - -

Sets the SMTP hosts. All hosts must be separated by a semicolon. You can also specify a different port for each host by using this format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com").

-

Hosts will be tried in order.

- - - - - -
- -
- -
- - string - $Hostname - = "" (line 142) - -
- - -

Sets the hostname to use in Message-Id and Received headers and as default HELO string. If empty, the value returned by SERVER_NAME is used or 'localhost.localdomain'.

- - - - - -
- -
- -
- - string - $Mailer - = "mail" (line 109) - -
- - -

Method to send mail: ("mail", "sendmail", or "smtp").

- - - - - -
- -
- -
- - string - $Password - = "" (line 187) - -
- - -

Sets SMTP password.

- - - - - -
- -
- -
- - string - $PluginDir - = "" (line 122) - -
- - -

Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.

- - - - - -
- -
- -
- - int - $Port - = 25 (line 163) - -
- - -

Sets the default SMTP server port.

- - - - - -
- -
- -
- - int - $Priority - = 3 (line 30) - -
- - -

Email priority (1 = High, 3 = Normal, 5 = low).

- - - - - -
- -
- -
- - string - $Sender - = "" (line 74) - -
- - -

Sets the Sender email (Return-Path) of the message. If not empty, will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.

- - - - - -
- -
- -
- - string - $Sendmail - = "/usr/sbin/sendmail" (line 115) - -
- - -

Sets the path of the sendmail program.

- - - - - -
- -
- -
- - bool - $SMTPAuth - = false (line 175) - -
- - -

Sets SMTP authentication. Utilizes the Username and Password variables.

- - - - - -
- -
- -
- - bool - $SMTPDebug - = false (line 200) - -
- - -

Sets SMTP class debugging on or off.

- - - - - -
- -
- -
- - bool - $SMTPKeepAlive - = false (line 208) - -
- - -

Prevents the SMTP connection from being closed after each mail sending. If this is set to true then to close the connection requires an explicit call to SmtpClose().

- - - - - -
- -
- -
- - string - $Subject - = "" (line 80) - -
- - -

Sets the Subject of the message.

- - - - - -
- -
- -
- - int - $Timeout - = 10 (line 194) - -
- - -

Sets the SMTP server timeout in seconds. This function will not work with the win32 version.

- - - - - -
- -
- -
- - string - $Username - = "" (line 181) - -
- - -

Sets SMTP username.

- - - - - -
- -
- -
- - string - $Version - = "1.71" (line 128) - -
- - -

Holds PHPMailer version.

- - - - - -
- -
- -
- - int - $WordWrap - = 0 (line 103) - -
- - -

Sets word wrapping on the body of the message to a given number of characters.

- - - - - -
- -
-
- - -
-
Methods
- -
- - -
- -
- AddAddress (line 287) -
- - -

Adds a "To" address.

- -
- void - - AddAddress - - (string $address, [string $name = ""]) -
- -
    -
  • - string - $address
  • -
  • - string - $name
  • -
- - -
- -
- -
- AddAttachment (line 1000) -
- - -

Adds an attachment from a path on the filesystem.

-

Returns false if the file could not be found or accessed.

- -
- bool - - AddAttachment - - (string $path, [string $name = ""], [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
    -
  • - string - $path:

    Path to the attachment.

  • -
  • - string - $name:

    Overrides the attachment name.

  • -
  • - string - $encoding:

    File encoding (see $Encoding).

  • -
  • - string - $type:

    File extension (MIME) type.

  • -
- - -
- -
- -
- AddBCC (line 315) -
- - -

Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.

- -
- void - - AddBCC - - (string $address, [string $name = ""]) -
- -
    -
  • - string - $address
  • -
  • - string - $name
  • -
- - -
- -
- -
- AddCC (line 301) -
- - -

Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.

- -
- void - - AddCC - - (string $address, [string $name = ""]) -
- -
    -
  • - string - $address
  • -
  • - string - $name
  • -
- - -
- -
- -
- AddCustomHeader (line 1525) -
- - -

Adds a custom header.

- -
- void - - AddCustomHeader - - (mixed $custom_header) -
- - - -
- -
- -
- AddEmbeddedImage (line 1275) -
- - -

Adds an embedded attachment. This can include images, sounds, and just about any other document. Make sure to set the $type to an image type. For JPEG images use "image/jpeg" and for GIF images use "image/gif".

- -
- bool - - AddEmbeddedImage - - (string $path, string $cid, [string $name = ""], [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
    -
  • - string - $path:

    Path to the attachment.

  • -
  • - string - $cid:

    Content ID of the attachment. Use this to identify the Id for accessing the image in an HTML form.

  • -
  • - string - $name:

    Overrides the attachment name.

  • -
  • - string - $encoding:

    File encoding (see $Encoding).

  • -
  • - string - $type:

    File extension (MIME) type.

  • -
- - -
- -
- -
- AddReplyTo (line 327) -
- - -

Adds a "Reply-to" address.

- -
- void - - AddReplyTo - - (string $address, [string $name = ""]) -
- -
    -
  • - string - $address
  • -
  • - string - $name
  • -
- - -
- -
- -
- AddStringAttachment (line 1248) -
- - -

Adds a string or binary attachment (non-filesystem) to the list.

-

This method can be used to attach ascii or binary data, such as a BLOB record from a database.

- -
- void - - AddStringAttachment - - (string $string, string $filename, [string $encoding = "base64"], [string $type = "application/octet-stream"]) -
- -
    -
  • - string - $string:

    String attachment data.

  • -
  • - string - $filename:

    Name of the attachment.

  • -
  • - string - $encoding:

    File encoding (see $Encoding).

  • -
  • - string - $type:

    File extension (MIME) type.

  • -
- - -
- -
- -
- ClearAddresses (line 1329) -
- - -

Clears all recipients assigned in the TO array. Returns void.

- -
- void - - ClearAddresses - - () -
- - - -
- -
- -
- ClearAllRecipients (line 1362) -
- - -

Clears all recipients assigned in the TO, CC and BCC array. Returns void.

- -
- void - - ClearAllRecipients - - () -
- - - -
- -
- -
- ClearAttachments (line 1373) -
- - -

Clears all previously set filesystem, string, and binary attachments. Returns void.

- -
- void - - ClearAttachments - - () -
- - - -
- -
- -
- ClearBCCs (line 1345) -
- - -

Clears all recipients assigned in the BCC array. Returns void.

- -
- void - - ClearBCCs - - () -
- - - -
- -
- -
- ClearCCs (line 1337) -
- - -

Clears all recipients assigned in the CC array. Returns void.

- -
- void - - ClearCCs - - () -
- - - -
- -
- -
- ClearCustomHeaders (line 1381) -
- - -

Clears all custom headers. Returns void.

- -
- void - - ClearCustomHeaders - - () -
- - - -
- -
- -
- ClearReplyTos (line 1353) -
- - -

Clears all recipients assigned in the ReplyTo array. Returns void.

- -
- void - - ClearReplyTos - - () -
- - - -
- -
- -
- IsError (line 1505) -
- - -

Returns true if an error occurred.

- -
- bool - - IsError - - () -
- - - -
- -
- -
- IsHTML (line 236) -
- - -

Sets message type to HTML.

- -
- void - - IsHTML - - (bool $bool) -
- -
    -
  • - bool - $bool
  • -
- - -
- -
- -
- IsMail (line 255) -
- - -

Sets Mailer to send message using PHP mail() function.

- -
- void - - IsMail - - () -
- - - -
- -
- -
- IsQmail (line 271) -
- - -

Sets Mailer to send message using the qmail MTA.

- -
- void - - IsQmail - - () -
- - - -
- -
- -
- IsSendmail (line 263) -
- - -

Sets Mailer to send message using the $Sendmail program.

- -
- void - - IsSendmail - - () -
- - - -
- -
- -
- IsSMTP (line 247) -
- - -

Sets Mailer to send message using SMTP.

- -
- void - - IsSMTP - - () -
- - - -
- -
- -
- Send (line 344) -
- - -

Creates message and assigns Mailer. If the message is not sent successfully then it returns false. Use the ErrorInfo variable to view description of the error.

- -
- bool - - Send - - () -
- - - -
- -
- -
- SetLanguage (line 599) -
- - -

Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.

-
    -
  • access: public
  • -
- -
- bool - - SetLanguage - - (string $lang_type, [string $lang_path = ""]) -
- -
    -
  • - string - $lang_type:

    Type of language (e.g. Portuguese: "br")

  • -
  • - string - $lang_path:

    Path to the language file directory

  • -
- - -
- -
- -
- SmtpClose (line 579) -
- - -

Closes the active SMTP session if one exists.

- -
- void - - SmtpClose - - () -
- - - -
- -
-
- -

- Documention generated on Mon, 28 Jul 2003 23:25:49 -0400 by phpDocumentor 1.2.0 -

-
- \ No newline at end of file diff --git a/phpdoc/PHPMailer/SMTP.html b/phpdoc/PHPMailer/SMTP.html deleted file mode 100644 index 4fdecb1b..00000000 --- a/phpdoc/PHPMailer/SMTP.html +++ /dev/null @@ -1,734 +0,0 @@ - - - - - - Docs For Class SMTP - - - - -
-

Class SMTP

- - -
-
Description
- -
- -

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.

-
    -
  • author:

    Chris Ryan

  • -
-

- Located in Program_Root/class.smtp.php (line 24) -

- - -

-	
-			
-
- - - -
-
Variable Summary
- -
-
-
- string - $CRLF -
-
- bool - $do_debug -
-
- int - $SMTP_PORT -
-
-
-
- - -
-
Method Summary
- -
-
- -
- void - SMTP - () -
- -
- bool - Authenticate - (mixed $username, mixed $password) -
- -
- void - Close - () -
- -
- bool - Connect - (mixed $host, mixed $port, [mixed $tval = 30]) -
- -
- bool - Data - (mixed $msg_data) -
- -
- string - Expand - (mixed $name) -
- -
- bool - Hello - ([mixed $host = ""]) -
- -
- string - Help - ([mixed $keyword = ""]) -
- -
- bool - Mail - (mixed $from) -
- -
- bool - Noop - () -
- -
- bool - Quit - ([mixed $close_on_error = true]) -
- -
- bool - Recipient - (mixed $to) -
- -
- bool - Reset - () -
- -
- bool - Send - (mixed $from) -
- -
- bool - SendAndMail - (mixed $from) -
- -
- bool - SendOrMail - (mixed $from) -
- -
- bool - Turn - () -
- -
- int - Verify - (mixed $name) -
-
-
-
- - -
-
Variables
- -
- -
- -
- - string - $CRLF - = "\r\n" (line 36) - -
- - -

SMTP reply line ending

- - - - - -
- -
- -
- - bool - $do_debug - (line 42) - -
- - -

Sets whether debugging is turned on

- - - - - -
- -
- -
- - int - $SMTP_PORT - = 25 (line 30) - -
- - -

SMTP server port

- - - - - -
- -
-
- - -
-
Methods
- -
- - -
- -
- Constructor SMTP (line 57) -
- - -

Initialize the class so that the data is in a known state.

-
    -
  • access: public
  • -
- -
- void - - SMTP - - () -
- - - -
- -
- -
- Authenticate (line 144) -
- - -

Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.

-
    -
  • access: public
  • -
- -
- bool - - Authenticate - - (mixed $username, mixed $password) -
- - - -
- -
- -
- Close (line 232) -
- - -

Closes the socket and cleans up the state of the class.

-

It is not considered good to use this function without first trying to use QUIT.

-
    -
  • access: public
  • -
- -
- void - - Close - - () -
- - - -
- -
- -
- Connect (line 82) -
- - -

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 default is 30 seconds to try on the connection.

SMTP CODE SUCCESS: 220 SMTP CODE FAILURE: 421

-
    -
  • access: public
  • -
- -
- bool - - Connect - - (mixed $host, mixed $port, [mixed $tval = 30]) -
- - - -
- -
- -
- Data (line 266) -
- - -

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 the message body being seperated by and additional <CRLF>.

Implements rfc 821: DATA <CRLF>

SMTP CODE INTERMEDIATE: 354 [data] <CRLF>.<CRLF> SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 552,554,451,452 SMTP CODE FAILURE: 451,554 SMTP CODE ERROR : 500,501,503,421

-
    -
  • access: public
  • -
- -
- bool - - Data - - (mixed $msg_data) -
- - - -
- -
- -
- Expand (line 399) -
- - -

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> <sp> ] <path> The definition of <path> is defined in rfc 821

Implements rfc 821: EXPN <SP> <string> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 550 SMTP CODE ERROR : 500,501,502,504,421

-
    -
  • return:

    array

  • -
  • access: public
  • -
- -
- string - - Expand - - (mixed $name) -
- - - -
- -
- -
- Hello (line 450) -
- - -

Sends the HELO command to the smtp server.

-

This makes sure that we and the server are in the same known state.

Implements from rfc 821: HELO <SP> <domain> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 501, 504, 421

-
    -
  • access: public
  • -
- -
- bool - - Hello - - ([mixed $host = ""]) -
- - - -
- -
- -
- Help (line 524) -
- - -

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 to handle the returned data. If an error occurs then false is returned with $this->error set appropiately.

Implements rfc 821: HELP [ <SP> <string> ] <CRLF>

SMTP CODE SUCCESS: 211,214 SMTP CODE ERROR : 500,501,502,504,421

-
    -
  • access: public
  • -
- -
- string - - Help - - ([mixed $keyword = ""]) -
- - - -
- -
- -
- Mail (line 576) -
- - -

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.

-

Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,421

-
    -
  • access: public
  • -
- -
- bool - - Mail - - (mixed $from) -
- - - -
- -
- -
- Noop (line 618) -
- - -

Sends the command NOOP to the SMTP server.

-

Implements from rfc 821: NOOP <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500, 421

-
    -
  • access: public
  • -
- -
- bool - - Noop - - () -
- - - -
- -
- -
- Quit (line 661) -
- - -

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.

-

Implements from rfc 821: QUIT <CRLF>

SMTP CODE SUCCESS: 221 SMTP CODE ERROR : 500

-
    -
  • access: public
  • -
- -
- bool - - Quit - - ([mixed $close_on_error = true]) -
- - - -
- -
- -
- Recipient (line 715) -
- - -

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.

Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>

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 - - Recipient - - (mixed $to) -
- - - -
- -
- -
- Reset (line 759) -
- - -

Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.

-

Implements rfc 821: RSET <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE ERROR : 500,501,504,421

-
    -
  • access: public
  • -
- -
- bool - - Reset - - () -
- - - -
- -
- -
- Send (line 808) -
- - -

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 command will send the message to the users terminal if they are logged in.

Implements rfc 821: SEND <SP> FROM:<reverse-path> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421

-
    -
  • access: public
  • -
- -
- bool - - Send - - (mixed $from) -
- - - -
- -
- -
- SendAndMail (line 856) -
- - -

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 command will send the message to the users terminal if they are logged in and send them an email.

Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421

-
    -
  • access: public
  • -
- -
- bool - - SendAndMail - - (mixed $from) -
- - - -
- -
- -
- SendOrMail (line 904) -
- - -

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 command will send the message to the users terminal if they are logged in or mail it to them if they are not.

Implements rfc 821: SOML <SP> FROM:<reverse-path> <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE SUCCESS: 552,451,452 SMTP CODE SUCCESS: 500,501,502,421

-
    -
  • access: public
  • -
- -
- bool - - SendOrMail - - (mixed $from) -
- - - -
- -
- -
- Turn (line 949) -
- - -

This is an optional command for SMTP that this class does not support. This method is here to make the RFC821 Definition complete for this class and __may__ be implimented in the future

-

Implements from rfc 821: TURN <CRLF>

SMTP CODE SUCCESS: 250 SMTP CODE FAILURE: 502 SMTP CODE ERROR : 500, 503

-
    -
  • access: public
  • -
- -
- bool - - Turn - - () -
- - - -
- -
- -
- Verify (line 971) -
- - -

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.

Implements rfc 821: VRFY <SP> <string> <CRLF>

SMTP CODE SUCCESS: 250,251 SMTP CODE FAILURE: 550,551,553 SMTP CODE ERROR : 500,501,502,421

-
    -
  • access: public
  • -
- -
- int - - Verify - - (mixed $name) -
- - - -
- -
-
- -

- Documention generated on Mon, 28 Jul 2003 23:25:50 -0400 by phpDocumentor 1.2.0 -

-
- \ No newline at end of file diff --git a/phpdoc/PHPMailer/_class_phpmailer_php.html b/phpdoc/PHPMailer/_class_phpmailer_php.html deleted file mode 100644 index f7bde2c7..00000000 --- a/phpdoc/PHPMailer/_class_phpmailer_php.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - Docs for page class.phpmailer.php - - - - -
-

Program_Root/class.phpmailer.php

- - -
-
Description
- -
- - -
-
- - -
-
Classes
- -
- - - - - - - - - -
ClassDescription
- PHPMailer - - PHPMailer - PHP email transport class -
-
-
- - - - - -

- Documention generated on Mon, 28 Jul 2003 23:25:49 -0400 by phpDocumentor 1.2.0 -

-
- \ No newline at end of file diff --git a/phpdoc/PHPMailer/_class_smtp_php.html b/phpdoc/PHPMailer/_class_smtp_php.html deleted file mode 100644 index 1b7d1b52..00000000 --- a/phpdoc/PHPMailer/_class_smtp_php.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - Docs for page class.smtp.php - - - - -
-

Program_Root/class.smtp.php

- - -
-
Description
- -
- - -
-
- - -
-
Classes
- -
- - - - - - - - - -
ClassDescription
- SMTP - - 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. -
-
-
- - - - - -

- Documention generated on Mon, 28 Jul 2003 23:25:50 -0400 by phpDocumentor 1.2.0 -

-
- \ No newline at end of file diff --git a/phpdoc/blank.html b/phpdoc/blank.html deleted file mode 100644 index 4382bc95..00000000 --- a/phpdoc/blank.html +++ /dev/null @@ -1,13 +0,0 @@ - - - Generated Documentation - - - - -

Generated Documentation

-Welcome to default!
-
-This documentation was generated by phpDocumentor v1.2.0
- - \ No newline at end of file diff --git a/phpdoc/classtrees_PHPMailer.html b/phpdoc/classtrees_PHPMailer.html deleted file mode 100644 index f8a48da6..00000000 --- a/phpdoc/classtrees_PHPMailer.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - -

- -

-

Root class PHPMailer

- - -

Root class SMTP

- - -

- Documention generated on Mon, 28 Jul 2003 23:25:49 -0400 by phpDocumentor 1.2.0 -

- - \ No newline at end of file diff --git a/phpdoc/elementindex.html b/phpdoc/elementindex.html deleted file mode 100644 index 7f65a767..00000000 --- a/phpdoc/elementindex.html +++ /dev/null @@ -1,734 +0,0 @@ - - - - - - - - - - - -

Full index

-

Package indexes

- -
-
- a - b - c - d - e - f - h - i - m - n - p - q - r - s - t - u - v - w -
- - -
-
a
-
top
-
-
-
-
- $AltBody -
-
-
PHPMailer::$AltBody in class.phpmailer.php
-
Sets the text-only body of the message. This automatically sets the email to multipart/alternative. This body can be read by mail clients that do not have HTML email capability such as mutt. Clients that can read HTML will view the normal Body.
-
-
- AddAddress -
-
-
PHPMailer::AddAddress() in class.phpmailer.php
-
Adds a "To" address.
-
-
- AddAttachment -
-
-
PHPMailer::AddAttachment() in class.phpmailer.php
-
Adds an attachment from a path on the filesystem.
-
-
- AddBCC -
-
-
PHPMailer::AddBCC() in class.phpmailer.php
-
Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
-
- AddCC -
-
-
PHPMailer::AddCC() in class.phpmailer.php
-
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
-
- AddCustomHeader -
-
-
PHPMailer::AddCustomHeader() in class.phpmailer.php
-
Adds a custom header.
-
-
- AddEmbeddedImage -
-
-
PHPMailer::AddEmbeddedImage() in class.phpmailer.php
-
Adds an embedded attachment. This can include images, sounds, and just about any other document. Make sure to set the $type to an image type. For JPEG images use "image/jpeg" and for GIF images use "image/gif".
-
-
- AddReplyTo -
-
-
PHPMailer::AddReplyTo() in class.phpmailer.php
-
Adds a "Reply-to" address.
-
-
- AddStringAttachment -
-
-
PHPMailer::AddStringAttachment() in class.phpmailer.php
-
Adds a string or binary attachment (non-filesystem) to the list.
-
-
- Authenticate -
-
-
SMTP::Authenticate() in class.smtp.php
-
Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.
-
-
- -
-
b
-
top
-
-
-
-
- $Body -
-
-
PHPMailer::$Body in class.phpmailer.php
-
Sets the Body of the message. This can be either an HTML or text body.
-
-
- -
-
c
-
top
-
-
-
-
- $CharSet -
-
-
PHPMailer::$CharSet in class.phpmailer.php
-
Sets the CharSet of the message.
-
-
- $ConfirmReadingTo -
-
-
PHPMailer::$ConfirmReadingTo in class.phpmailer.php
-
Sets the email address that a reading confirmation will be sent.
-
-
- $ContentType -
-
-
PHPMailer::$ContentType in class.phpmailer.php
-
Sets the Content-type of the message.
-
-
- $CRLF -
-
-
SMTP::$CRLF in class.smtp.php
-
SMTP reply line ending
-
-
- class.phpmailer.php -
-
-
class.phpmailer.php in class.phpmailer.php
-
-
- class.smtp.php -
-
-
class.smtp.php in class.smtp.php
-
-
- ClearAddresses -
-
-
PHPMailer::ClearAddresses() in class.phpmailer.php
-
Clears all recipients assigned in the TO array. Returns void.
-
-
- ClearAllRecipients -
-
-
PHPMailer::ClearAllRecipients() in class.phpmailer.php
-
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
-
-
- ClearAttachments -
-
-
PHPMailer::ClearAttachments() in class.phpmailer.php
-
Clears all previously set filesystem, string, and binary attachments. Returns void.
-
-
- ClearBCCs -
-
-
PHPMailer::ClearBCCs() in class.phpmailer.php
-
Clears all recipients assigned in the BCC array. Returns void.
-
-
- ClearCCs -
-
-
PHPMailer::ClearCCs() in class.phpmailer.php
-
Clears all recipients assigned in the CC array. Returns void.
-
-
- ClearCustomHeaders -
-
-
PHPMailer::ClearCustomHeaders() in class.phpmailer.php
-
Clears all custom headers. Returns void.
-
-
- ClearReplyTos -
-
-
PHPMailer::ClearReplyTos() in class.phpmailer.php
-
Clears all recipients assigned in the ReplyTo array. Returns void.
-
-
- Close -
-
-
SMTP::Close() in class.smtp.php
-
Closes the socket and cleans up the state of the class.
-
-
- Connect -
-
-
SMTP::Connect() in class.smtp.php
-
Connect to the server specified on the port specified.
-
-
- -
-
d
-
top
-
-
-
-
- $do_debug -
-
-
SMTP::$do_debug in class.smtp.php
-
Sets whether debugging is turned on
-
-
- Data -
-
-
SMTP::Data() in class.smtp.php
-
Issues a data command and sends the msg_data to the server
-
-
- -
-
e
-
top
-
-
-
-
- $Encoding -
-
-
PHPMailer::$Encoding in class.phpmailer.php
-
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
-
-
- $ErrorInfo -
-
-
PHPMailer::$ErrorInfo in class.phpmailer.php
-
Holds the most recent mailer error message.
-
-
- Expand -
-
-
SMTP::Expand() in class.smtp.php
-
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.
-
-
- -
-
f
-
top
-
-
-
-
- $From -
-
-
PHPMailer::$From in class.phpmailer.php
-
Sets the From email address for the message.
-
-
- $FromName -
-
-
PHPMailer::$FromName in class.phpmailer.php
-
Sets the From name of the message.
-
-
- -
-
h
-
top
-
-
-
-
- $Helo -
-
-
PHPMailer::$Helo in class.phpmailer.php
-
Sets the SMTP HELO of the message (Default is $Hostname).
-
-
- $Host -
-
-
PHPMailer::$Host in class.phpmailer.php
-
Sets the SMTP hosts. All hosts must be separated by a semicolon. You can also specify a different port for each host by using this format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com").
-
-
- $Hostname -
-
-
PHPMailer::$Hostname in class.phpmailer.php
-
Sets the hostname to use in Message-Id and Received headers and as default HELO string. If empty, the value returned by SERVER_NAME is used or 'localhost.localdomain'.
-
-
- Hello -
-
-
SMTP::Hello() in class.smtp.php
-
Sends the HELO command to the smtp server.
-
-
- Help -
-
-
SMTP::Help() in class.smtp.php
-
Gets help information on the keyword specified. If the keyword
-
-
- -
-
i
-
top
-
-
-
-
- IsError -
-
-
PHPMailer::IsError() in class.phpmailer.php
-
Returns true if an error occurred.
-
-
- IsHTML -
-
-
PHPMailer::IsHTML() in class.phpmailer.php
-
Sets message type to HTML.
-
-
- IsMail -
-
-
PHPMailer::IsMail() in class.phpmailer.php
-
Sets Mailer to send message using PHP mail() function.
-
-
- IsQmail -
-
-
PHPMailer::IsQmail() in class.phpmailer.php
-
Sets Mailer to send message using the qmail MTA.
-
-
- IsSendmail -
-
-
PHPMailer::IsSendmail() in class.phpmailer.php
-
Sets Mailer to send message using the $Sendmail program.
-
-
- IsSMTP -
-
-
PHPMailer::IsSMTP() in class.phpmailer.php
-
Sets Mailer to send message using SMTP.
-
-
- -
-
m
-
top
-
-
-
-
- $Mailer -
-
-
PHPMailer::$Mailer in class.phpmailer.php
-
Method to send mail: ("mail", "sendmail", or "smtp").
-
-
- Mail -
-
-
SMTP::Mail() in class.smtp.php
-
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.
-
-
- -
-
n
-
top
-
-
-
-
- Noop -
-
-
SMTP::Noop() in class.smtp.php
-
Sends the command NOOP to the SMTP server.
-
-
- -
-
p
-
top
-
-
-
-
- $Password -
-
-
PHPMailer::$Password in class.phpmailer.php
-
Sets SMTP password.
-
-
- $PluginDir -
-
-
PHPMailer::$PluginDir in class.phpmailer.php
-
Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.
-
-
- $Port -
-
-
PHPMailer::$Port in class.phpmailer.php
-
Sets the default SMTP server port.
-
-
- $Priority -
-
-
PHPMailer::$Priority in class.phpmailer.php
-
Email priority (1 = High, 3 = Normal, 5 = low).
-
-
- PHPMailer -
-
-
PHPMailer in class.phpmailer.php
-
PHPMailer - PHP email transport class
-
-
- -
-
q
-
top
-
-
-
-
- Quit -
-
-
SMTP::Quit() in class.smtp.php
-
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.
-
-
- -
-
r
-
top
-
-
-
-
- Recipient -
-
-
SMTP::Recipient() in class.smtp.php
-
Sends the command RCPT to the SMTP server with the TO: argument of $to.
-
-
- Reset -
-
-
SMTP::Reset() in class.smtp.php
-
Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.
-
-
- -
-
s
-
top
-
-
-
-
- $Sender -
-
-
PHPMailer::$Sender in class.phpmailer.php
-
Sets the Sender email (Return-Path) of the message. If not empty, will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
-
-
- $Sendmail -
-
-
PHPMailer::$Sendmail in class.phpmailer.php
-
Sets the path of the sendmail program.
-
-
- $SMTPAuth -
-
-
PHPMailer::$SMTPAuth in class.phpmailer.php
-
Sets SMTP authentication. Utilizes the Username and Password variables.
-
-
- $SMTPDebug -
-
-
PHPMailer::$SMTPDebug in class.phpmailer.php
-
Sets SMTP class debugging on or off.
-
-
- $SMTPKeepAlive -
-
-
PHPMailer::$SMTPKeepAlive in class.phpmailer.php
-
Prevents the SMTP connection from being closed after each mail sending. If this is set to true then to close the connection requires an explicit call to SmtpClose().
-
-
- $SMTP_PORT -
-
-
SMTP::$SMTP_PORT in class.smtp.php
-
SMTP server port
-
-
- $Subject -
-
-
PHPMailer::$Subject in class.phpmailer.php
-
Sets the Subject of the message.
-
-
- Send -
-
-
SMTP::Send() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- Send -
-
-
PHPMailer::Send() in class.phpmailer.php
-
Creates message and assigns Mailer. If the message is not sent successfully then it returns false. Use the ErrorInfo variable to view description of the error.
-
-
- SendAndMail -
-
-
SMTP::SendAndMail() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- SendOrMail -
-
-
SMTP::SendOrMail() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- SetLanguage -
-
-
PHPMailer::SetLanguage() in class.phpmailer.php
-
Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.
-
-
- SMTP -
-
-
SMTP::SMTP() in class.smtp.php
-
Initialize the class so that the data is in a known state.
-
-
- SMTP -
-
-
SMTP in class.smtp.php
-
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.
-
-
- SmtpClose -
-
-
PHPMailer::SmtpClose() in class.phpmailer.php
-
Closes the active SMTP session if one exists.
-
-
- -
-
t
-
top
-
-
-
-
- $Timeout -
-
-
PHPMailer::$Timeout in class.phpmailer.php
-
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
-
-
- Turn -
-
-
SMTP::Turn() in class.smtp.php
-
This is an optional command for SMTP that this class does not support. This method is here to make the RFC821 Definition complete for this class and __may__ be implimented in the future
-
-
- -
-
u
-
top
-
-
-
-
- $Username -
-
-
PHPMailer::$Username in class.phpmailer.php
-
Sets SMTP username.
-
-
- -
-
v
-
top
-
-
-
-
- $Version -
-
-
PHPMailer::$Version in class.phpmailer.php
-
Holds PHPMailer version.
-
-
- Verify -
-
-
SMTP::Verify() in class.smtp.php
-
Verifies that the name is recognized by the server.
-
-
- -
-
w
-
top
-
-
-
-
- $WordWrap -
-
-
PHPMailer::$WordWrap in class.phpmailer.php
-
Sets word wrapping on the body of the message to a given number of characters.
-
-
- -
- a - b - c - d - e - f - h - i - m - n - p - q - r - s - t - u - v - w -
- \ No newline at end of file diff --git a/phpdoc/elementindex_PHPMailer.html b/phpdoc/elementindex_PHPMailer.html deleted file mode 100644 index e62d5ed6..00000000 --- a/phpdoc/elementindex_PHPMailer.html +++ /dev/null @@ -1,731 +0,0 @@ - - - - - - - - - - - -

[PHPMailer] element index

-All elements -
-
- a - b - c - d - e - f - h - i - m - n - p - q - r - s - t - u - v - w -
- - -
-
a
-
top
-
-
-
-
- $AltBody -
-
-
PHPMailer::$AltBody in class.phpmailer.php
-
Sets the text-only body of the message. This automatically sets the email to multipart/alternative. This body can be read by mail clients that do not have HTML email capability such as mutt. Clients that can read HTML will view the normal Body.
-
-
- AddAddress -
-
-
PHPMailer::AddAddress() in class.phpmailer.php
-
Adds a "To" address.
-
-
- AddAttachment -
-
-
PHPMailer::AddAttachment() in class.phpmailer.php
-
Adds an attachment from a path on the filesystem.
-
-
- AddBCC -
-
-
PHPMailer::AddBCC() in class.phpmailer.php
-
Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
-
- AddCC -
-
-
PHPMailer::AddCC() in class.phpmailer.php
-
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
-
- AddCustomHeader -
-
-
PHPMailer::AddCustomHeader() in class.phpmailer.php
-
Adds a custom header.
-
-
- AddEmbeddedImage -
-
-
PHPMailer::AddEmbeddedImage() in class.phpmailer.php
-
Adds an embedded attachment. This can include images, sounds, and just about any other document. Make sure to set the $type to an image type. For JPEG images use "image/jpeg" and for GIF images use "image/gif".
-
-
- AddReplyTo -
-
-
PHPMailer::AddReplyTo() in class.phpmailer.php
-
Adds a "Reply-to" address.
-
-
- AddStringAttachment -
-
-
PHPMailer::AddStringAttachment() in class.phpmailer.php
-
Adds a string or binary attachment (non-filesystem) to the list.
-
-
- Authenticate -
-
-
SMTP::Authenticate() in class.smtp.php
-
Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.
-
-
- -
-
b
-
top
-
-
-
-
- $Body -
-
-
PHPMailer::$Body in class.phpmailer.php
-
Sets the Body of the message. This can be either an HTML or text body.
-
-
- -
-
c
-
top
-
-
-
-
- $CharSet -
-
-
PHPMailer::$CharSet in class.phpmailer.php
-
Sets the CharSet of the message.
-
-
- $ConfirmReadingTo -
-
-
PHPMailer::$ConfirmReadingTo in class.phpmailer.php
-
Sets the email address that a reading confirmation will be sent.
-
-
- $ContentType -
-
-
PHPMailer::$ContentType in class.phpmailer.php
-
Sets the Content-type of the message.
-
-
- $CRLF -
-
-
SMTP::$CRLF in class.smtp.php
-
SMTP reply line ending
-
-
- class.phpmailer.php -
-
-
class.phpmailer.php in class.phpmailer.php
-
-
- class.smtp.php -
-
-
class.smtp.php in class.smtp.php
-
-
- ClearAddresses -
-
-
PHPMailer::ClearAddresses() in class.phpmailer.php
-
Clears all recipients assigned in the TO array. Returns void.
-
-
- ClearAllRecipients -
-
-
PHPMailer::ClearAllRecipients() in class.phpmailer.php
-
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
-
-
- ClearAttachments -
-
-
PHPMailer::ClearAttachments() in class.phpmailer.php
-
Clears all previously set filesystem, string, and binary attachments. Returns void.
-
-
- ClearBCCs -
-
-
PHPMailer::ClearBCCs() in class.phpmailer.php
-
Clears all recipients assigned in the BCC array. Returns void.
-
-
- ClearCCs -
-
-
PHPMailer::ClearCCs() in class.phpmailer.php
-
Clears all recipients assigned in the CC array. Returns void.
-
-
- ClearCustomHeaders -
-
-
PHPMailer::ClearCustomHeaders() in class.phpmailer.php
-
Clears all custom headers. Returns void.
-
-
- ClearReplyTos -
-
-
PHPMailer::ClearReplyTos() in class.phpmailer.php
-
Clears all recipients assigned in the ReplyTo array. Returns void.
-
-
- Close -
-
-
SMTP::Close() in class.smtp.php
-
Closes the socket and cleans up the state of the class.
-
-
- Connect -
-
-
SMTP::Connect() in class.smtp.php
-
Connect to the server specified on the port specified.
-
-
- -
-
d
-
top
-
-
-
-
- $do_debug -
-
-
SMTP::$do_debug in class.smtp.php
-
Sets whether debugging is turned on
-
-
- Data -
-
-
SMTP::Data() in class.smtp.php
-
Issues a data command and sends the msg_data to the server
-
-
- -
-
e
-
top
-
-
-
-
- $Encoding -
-
-
PHPMailer::$Encoding in class.phpmailer.php
-
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
-
-
- $ErrorInfo -
-
-
PHPMailer::$ErrorInfo in class.phpmailer.php
-
Holds the most recent mailer error message.
-
-
- Expand -
-
-
SMTP::Expand() in class.smtp.php
-
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.
-
-
- -
-
f
-
top
-
-
-
-
- $From -
-
-
PHPMailer::$From in class.phpmailer.php
-
Sets the From email address for the message.
-
-
- $FromName -
-
-
PHPMailer::$FromName in class.phpmailer.php
-
Sets the From name of the message.
-
-
- -
-
h
-
top
-
-
-
-
- $Helo -
-
-
PHPMailer::$Helo in class.phpmailer.php
-
Sets the SMTP HELO of the message (Default is $Hostname).
-
-
- $Host -
-
-
PHPMailer::$Host in class.phpmailer.php
-
Sets the SMTP hosts. All hosts must be separated by a semicolon. You can also specify a different port for each host by using this format: [hostname:port] (e.g. "smtp1.example.com:25;smtp2.example.com").
-
-
- $Hostname -
-
-
PHPMailer::$Hostname in class.phpmailer.php
-
Sets the hostname to use in Message-Id and Received headers and as default HELO string. If empty, the value returned by SERVER_NAME is used or 'localhost.localdomain'.
-
-
- Hello -
-
-
SMTP::Hello() in class.smtp.php
-
Sends the HELO command to the smtp server.
-
-
- Help -
-
-
SMTP::Help() in class.smtp.php
-
Gets help information on the keyword specified. If the keyword
-
-
- -
-
i
-
top
-
-
-
-
- IsError -
-
-
PHPMailer::IsError() in class.phpmailer.php
-
Returns true if an error occurred.
-
-
- IsHTML -
-
-
PHPMailer::IsHTML() in class.phpmailer.php
-
Sets message type to HTML.
-
-
- IsMail -
-
-
PHPMailer::IsMail() in class.phpmailer.php
-
Sets Mailer to send message using PHP mail() function.
-
-
- IsQmail -
-
-
PHPMailer::IsQmail() in class.phpmailer.php
-
Sets Mailer to send message using the qmail MTA.
-
-
- IsSendmail -
-
-
PHPMailer::IsSendmail() in class.phpmailer.php
-
Sets Mailer to send message using the $Sendmail program.
-
-
- IsSMTP -
-
-
PHPMailer::IsSMTP() in class.phpmailer.php
-
Sets Mailer to send message using SMTP.
-
-
- -
-
m
-
top
-
-
-
-
- $Mailer -
-
-
PHPMailer::$Mailer in class.phpmailer.php
-
Method to send mail: ("mail", "sendmail", or "smtp").
-
-
- Mail -
-
-
SMTP::Mail() in class.smtp.php
-
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.
-
-
- -
-
n
-
top
-
-
-
-
- Noop -
-
-
SMTP::Noop() in class.smtp.php
-
Sends the command NOOP to the SMTP server.
-
-
- -
-
p
-
top
-
-
-
-
- $Password -
-
-
PHPMailer::$Password in class.phpmailer.php
-
Sets SMTP password.
-
-
- $PluginDir -
-
-
PHPMailer::$PluginDir in class.phpmailer.php
-
Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.
-
-
- $Port -
-
-
PHPMailer::$Port in class.phpmailer.php
-
Sets the default SMTP server port.
-
-
- $Priority -
-
-
PHPMailer::$Priority in class.phpmailer.php
-
Email priority (1 = High, 3 = Normal, 5 = low).
-
-
- PHPMailer -
-
-
PHPMailer in class.phpmailer.php
-
PHPMailer - PHP email transport class
-
-
- -
-
q
-
top
-
-
-
-
- Quit -
-
-
SMTP::Quit() in class.smtp.php
-
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.
-
-
- -
-
r
-
top
-
-
-
-
- Recipient -
-
-
SMTP::Recipient() in class.smtp.php
-
Sends the command RCPT to the SMTP server with the TO: argument of $to.
-
-
- Reset -
-
-
SMTP::Reset() in class.smtp.php
-
Sends the RSET command to abort and transaction that is currently in progress. Returns true if successful false otherwise.
-
-
- -
-
s
-
top
-
-
-
-
- $Sender -
-
-
PHPMailer::$Sender in class.phpmailer.php
-
Sets the Sender email (Return-Path) of the message. If not empty, will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
-
-
- $Sendmail -
-
-
PHPMailer::$Sendmail in class.phpmailer.php
-
Sets the path of the sendmail program.
-
-
- $SMTPAuth -
-
-
PHPMailer::$SMTPAuth in class.phpmailer.php
-
Sets SMTP authentication. Utilizes the Username and Password variables.
-
-
- $SMTPDebug -
-
-
PHPMailer::$SMTPDebug in class.phpmailer.php
-
Sets SMTP class debugging on or off.
-
-
- $SMTPKeepAlive -
-
-
PHPMailer::$SMTPKeepAlive in class.phpmailer.php
-
Prevents the SMTP connection from being closed after each mail sending. If this is set to true then to close the connection requires an explicit call to SmtpClose().
-
-
- $SMTP_PORT -
-
-
SMTP::$SMTP_PORT in class.smtp.php
-
SMTP server port
-
-
- $Subject -
-
-
PHPMailer::$Subject in class.phpmailer.php
-
Sets the Subject of the message.
-
-
- Send -
-
-
SMTP::Send() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- Send -
-
-
PHPMailer::Send() in class.phpmailer.php
-
Creates message and assigns Mailer. If the message is not sent successfully then it returns false. Use the ErrorInfo variable to view description of the error.
-
-
- SendAndMail -
-
-
SMTP::SendAndMail() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- SendOrMail -
-
-
SMTP::SendOrMail() in class.smtp.php
-
Starts a mail transaction from the email address specified in
-
-
- SetLanguage -
-
-
PHPMailer::SetLanguage() in class.phpmailer.php
-
Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.
-
-
- SMTP -
-
-
SMTP::SMTP() in class.smtp.php
-
Initialize the class so that the data is in a known state.
-
-
- SMTP -
-
-
SMTP in class.smtp.php
-
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.
-
-
- SmtpClose -
-
-
PHPMailer::SmtpClose() in class.phpmailer.php
-
Closes the active SMTP session if one exists.
-
-
- -
-
t
-
top
-
-
-
-
- $Timeout -
-
-
PHPMailer::$Timeout in class.phpmailer.php
-
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
-
-
- Turn -
-
-
SMTP::Turn() in class.smtp.php
-
This is an optional command for SMTP that this class does not support. This method is here to make the RFC821 Definition complete for this class and __may__ be implimented in the future
-
-
- -
-
u
-
top
-
-
-
-
- $Username -
-
-
PHPMailer::$Username in class.phpmailer.php
-
Sets SMTP username.
-
-
- -
-
v
-
top
-
-
-
-
- $Version -
-
-
PHPMailer::$Version in class.phpmailer.php
-
Holds PHPMailer version.
-
-
- Verify -
-
-
SMTP::Verify() in class.smtp.php
-
Verifies that the name is recognized by the server.
-
-
- -
-
w
-
top
-
-
-
-
- $WordWrap -
-
-
PHPMailer::$WordWrap in class.phpmailer.php
-
Sets word wrapping on the body of the message to a given number of characters.
-
-
- -
- a - b - c - d - e - f - h - i - m - n - p - q - r - s - t - u - v - w -
- \ No newline at end of file diff --git a/phpdoc/errors.html b/phpdoc/errors.html deleted file mode 100644 index d5781a06..00000000 --- a/phpdoc/errors.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - phpDocumentor Parser Errors and Warnings - - - - - Post-parsing
-class.smtp.php
-

class.phpmailer.php

-

Warnings:


-Warning on line 1530 - no @package tag was used in a DocBlock for file C:\dev\phpDocumentor-1.2.0\Classes\class.phpmailer.php
-

class.smtp.php

-

Warnings:


-Warning on line 1039 - no @package tag was used in a DocBlock for file C:\dev\phpDocumentor-1.2.0\Classes\class.smtp.php
-

- Documention generated on Mon, 28 Jul 2003 23:25:50 -0400 by phpDocumentor 1.2.0 -

- - \ No newline at end of file diff --git a/phpdoc/index.html b/phpdoc/index.html deleted file mode 100644 index f2b2c7aa..00000000 --- a/phpdoc/index.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - Generated Documentation - - - - - - - - - - - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - - - \ No newline at end of file diff --git a/phpdoc/li_PHPMailer.html b/phpdoc/li_PHPMailer.html deleted file mode 100644 index ec8456a0..00000000 --- a/phpdoc/li_PHPMailer.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - -
PHPMailer
-
- -
- -
Description
-
- Class trees
- Index of elements
-
- - - -
Classes
-
PHPMailer
-
SMTP
-
Files
-
class.phpmailer.php
-
class.smtp.php
- - -
-
-

phpDocumentor v 1.2.0

- - \ No newline at end of file diff --git a/phpdoc/media/banner.css b/phpdoc/media/banner.css deleted file mode 100644 index f2149ebb..00000000 --- a/phpdoc/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #CCCCFF; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #6666AA; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #AAAADD; - border: 1px solid black; - color: yellow; -} diff --git a/phpdoc/media/stylesheet.css b/phpdoc/media/stylesheet.css deleted file mode 100644 index 7a811396..00000000 --- a/phpdoc/media/stylesheet.css +++ /dev/null @@ -1,133 +0,0 @@ -a { color: #336699; text-decoration: none; } -a:hover { color: #6699CC; text-decoration: underline; } -a:active { color: #6699CC; text-decoration: underline; } - -body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree dl { margin: 0px } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } -.nav-button-disabled { color: #999999; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/phpdoc/packages.html b/phpdoc/packages.html deleted file mode 100644 index fdf40b0b..00000000 --- a/phpdoc/packages.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file