PHPMailer - PHP email transport class
Located in Program_Root/class.phpmailer.php (line 20)
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.
Sets the Body of the message. This can be either an HTML or text body.
If HTML then run IsHTML(true).
Sets the CharSet of the message.
Sets the email address that a reading confirmation will be sent.
Sets the Content-type of the message.
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
Holds the most recent mailer error message.
Sets the From email address for the message.
Sets the From name of the message.
Sets the SMTP HELO of the message (Default is $Hostname).
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.
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'.
Method to send mail: ("mail", "sendmail", or "smtp").
Sets SMTP password.
Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.
Sets the default SMTP server port.
Email priority (1 = High, 3 = Normal, 5 = low).
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.
Sets the path of the sendmail program.
Sets SMTP authentication. Utilizes the Username and Password variables.
Sets SMTP class debugging on or off.
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().
Sets the Subject of the message.
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
Sets SMTP username.
Holds PHPMailer version.
Sets word wrapping on the body of the message to a given number of characters.
Adds a "To" address.
Adds an attachment from a path on the filesystem.
Returns false if the file could not be found or accessed.
Path to the attachment.
Overrides the attachment name.
File encoding (see $Encoding).
File extension (MIME) type.
Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
Adds a custom header.
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".
Path to the attachment.
Content ID of the attachment. Use this to identify the Id for accessing the image in an HTML form.
Overrides the attachment name.
File encoding (see $Encoding).
File extension (MIME) type.
Adds a "Reply-to" address.
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.
String attachment data.
Name of the attachment.
File encoding (see $Encoding).
File extension (MIME) type.
Clears all recipients assigned in the TO array. Returns void.
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
Clears all previously set filesystem, string, and binary attachments. Returns void.
Clears all recipients assigned in the BCC array. Returns void.
Clears all recipients assigned in the CC array. Returns void.
Clears all custom headers. Returns void.
Clears all recipients assigned in the ReplyTo array. Returns void.
Returns true if an error occurred.
Sets message type to HTML.
Sets Mailer to send message using PHP mail() function.
Sets Mailer to send message using the qmail MTA.
Sets Mailer to send message using the $Sendmail program.
Sets Mailer to send message using SMTP.
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.
Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.
Type of language (e.g. Portuguese: "br")
Path to the language file directory
Closes the active SMTP session if one exists.
Documention generated on Mon, 28 Jul 2003 23:25:49 -0400 by phpDocumentor 1.2.0