$AltBody = ''
[line 118]
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.
Tags:
$Body = ''
[line 109]
Sets the Body of the message. This can be either an HTML or text body.
If HTML then run IsHTML(true).
Tags:
$CharSet = 'utf-8'
[line 58]
Sets the CharSet of the message.
Tags:
$ConfirmReadingTo = ''
[line 156]
Sets the email address that a reading confirmation will be sent.
Tags:
$ContentType = 'text/plain'
[line 64]
Sets the Content-type of the message.
Tags:
$Encoding = '8bit'
[line 71]
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
Tags:
$ErrorInfo = ''
[line 77]
Holds the most recent mailer error message.
Tags:
$From = 'root@localhost'
[line 83]
Sets the From email address for the message.
Tags:
$FromName = 'Root User'
[line 89]
Sets the From name of the message.
Tags:
$Helo = ''
[line 197]
Sets the SMTP HELO of the message (Default is $Hostname).
Tags:
$Host = 'localhost'
[line 185]
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.
Tags:
$Hostname = ''
[line 164]
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'.
Tags:
$Mailer = 'mail'
[line 131]
Method to send mail: ("mail", "sendmail", or "smtp").
Tags:
$MessageID = ''
[line 171]
Sets the message ID to be used in the Message-Id header.
If empty, a unique id will be generated.
Tags:
$Password = ''
[line 222]
Sets SMTP password.
Tags:
$PluginDir = ''
[line 144]
Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.
Tags:
$Port = 25
[line 191]
Sets the default SMTP server port.
Tags:
$Priority = 3
[line 52]
Email priority (1 = High, 3 = Normal, 5 = low).
Tags:
$Sender = ''
[line 96]
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.
Tags:
$Sendmail = '/usr/sbin/sendmail'
[line 137]
Sets the path of the sendmail program.
Tags:
$SingleTo = false
[line 250]
Provides the ability to have the TO field process individual
emails, instead of sending to entire TO addresses
Tags:
$SMTPAuth = false
[line 210]
Sets SMTP authentication. Utilizes the Username and Password variables.
Tags:
$SMTPDebug = false
[line 235]
Sets SMTP class debugging on or off.
Tags:
$SMTPKeepAlive = false
[line 243]
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().
Tags:
$SMTPSecure = ""
[line 204]
Sets connection prefix.
Options are "", "ssl" or "tls"
Tags:
$Subject = ''
[line 102]
Sets the Subject of the message.
Tags:
$Timeout = 10
[line 229]
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
Tags:
$Username = ''
[line 216]
Sets SMTP username.
Tags:
$Version = "2.2"
[line 150]
Holds PHPMailer version.
Tags:
$WordWrap = 0
[line 125]
Sets word wrapping on the body of the message to a given number of characters.
Tags:
method AddAddress [line 387]
void AddAddress(
string
$address, [string
$name = ''])
|
|
Adds a "To" address.
Tags:
Parameters:
method AddAttachment [line 1210]
bool AddAttachment(
string
$path, [string
$name = ''], [string
$encoding = 'base64'], [string
$type = 'application/octet-stream'])
|
|
Adds an attachment from a path on the filesystem.
Returns false if the file could not be found or accessed.
Tags:
Parameters:
method AddBCC [line 419]
void AddBCC(
string
$address, [string
$name = ''])
|
|
Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
Tags:
Parameters:
method AddCC [line 405]
void AddCC(
string
$address, [string
$name = ''])
|
|
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
Tags:
Parameters:
method AddCustomHeader [line 1776]
void AddCustomHeader(
$custom_header)
|
|
Adds a custom header.
Tags:
Parameters:
method AddEmbeddedImage [line 1579]
bool AddEmbeddedImage(
string
$path, string
$cid, [string
$name = ''], [string
$encoding = 'base64'], [string
$type = 'application/octet-stream'])
|
|
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".
Tags:
Parameters:
method AddrAppend [line 764]
string AddrAppend(
$type,
$addr)
|
|
Creates recipient headers.
Tags:
Parameters:
method AddReplyTo [line 431]
void AddReplyTo(
string
$address, [string
$name = ''])
|
|
Adds a "Reply-to" address.
Tags:
Parameters:
method AddrFormat [line 782]
string AddrFormat(
$addr)
|
|
Formats an address correctly.
Tags:
Parameters:
method AddStringAttachment [line 1553]
void AddStringAttachment(
string
$string, string
$filename, [string
$encoding = 'base64'], [string
$type = 'application/octet-stream'])
|
|
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.
Tags:
Parameters:
method AttachAll [line 1240]
Attaches all fs, string, and binary attachments to the message.
Returns an empty string on failure.
Tags:
method Base64EncodeWrapMB [line 1434]
string Base64EncodeWrapMB(
string
$str)
|
|
Correctly encodes and wraps long multibyte strings for mail headers without breaking lines within a character.
Adapted from a function by paravoid at http://uk.php.net/manual/en/function.mb-encode-mimeheader.php
Tags:
Parameters:
method ClearAddresses [line 1630]
Clears all recipients assigned in the TO array. Returns void.
Tags:
method ClearAllRecipients [line 1663]
void ClearAllRecipients(
)
|
|
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
Tags:
method ClearAttachments [line 1674]
Clears all previously set filesystem, string, and binary attachments. Returns void.
Tags:
method ClearBCCs [line 1646]
Clears all recipients assigned in the BCC array. Returns void.
Tags:
method ClearCCs [line 1638]
Clears all recipients assigned in the CC array. Returns void.
Tags:
method ClearCustomHeaders [line 1682]
void ClearCustomHeaders(
)
|
|
Clears all custom headers. Returns void.
Tags:
method ClearReplyTos [line 1654]
Clears all recipients assigned in the ReplyTo array. Returns void.
Tags:
method clearTo [line 393]
method CreateBody [line 1056]
Assembles the message body. Returns an empty string on failure.
Tags:
method CreateHeader [line 941]
Assembles message header.
Tags:
method EncodeFile [line 1300]
string EncodeFile(
$path, [
$encoding = 'base64'])
|
|
Encodes attachment in requested format. Returns an empty string on failure.
Tags:
Parameters:
method EncodeHeader [line 1357]
string EncodeHeader(
$str, [
$position = 'text'])
|
|
Encode a header string to best of Q, B, quoted or none.
Tags:
Parameters:
method EncodeQ [line 1519]
string EncodeQ(
$str, [
$position = 'text'])
|
|
Encode string to q encoding.
Tags:
Parameters:
method EncodeQP [line 1473]
string EncodeQP(
[
$input = ''], [integer
$line_max = 76], [
$space_conv = false], string
$string)
|
|
Encode string to quoted-printable.
Tags:
Parameters:
method EncodeString [line 1327]
string EncodeString(
$str, [
$encoding = 'base64'])
|
|
Encodes string to requested format. Returns an empty string on failure.
Tags:
Parameters:
method EndBoundary [line 1154]
void EndBoundary(
$boundary)
|
|
Returns the end of a message boundary.
Tags:
Parameters:
method GetBoundary [line 1130]
void GetBoundary(
$boundary,
$charSet,
$contentType,
$encoding)
|
|
Returns the start of a message boundary.
Tags:
Parameters:
method getFile [line 1942]
void getFile(
string
$filename)
|
|
Read a file from a supplied filename and return it.
Tags:
Parameters:
method GetMailMIME [line 1021]
Returns the message MIME.
Tags:
method HasMultiBytes [line 1418]
bool HasMultiBytes(
string
$str)
|
|
Checks if a string contains multibyte characters.
Tags:
Parameters:
method HeaderLine [line 1183]
void HeaderLine(
$name,
$value)
|
|
Tags:
Parameters:
method InlineImageExists [line 1610]
bool InlineImageExists(
)
|
|
Returns true if an inline attachment is present.
Tags:
method IsError [line 1755]
Returns true if an error occurred.
Tags:
method IsHTML [line 336]
Sets message type to HTML.
Tags:
Parameters:
method IsMail [line 356]
Sets Mailer to send message using PHP mail() function.
Tags:
method IsQmail [line 372]
Sets Mailer to send message using the qmail MTA.
Tags:
method IsSendmail [line 364]
Sets Mailer to send message using the $Sendmail program.
Tags:
method IsSMTP [line 348]
Sets Mailer to send message using SMTP.
Tags:
method loadTemplate [line 288]
boolean loadTemplate(
string
$fullPathToTemplate)
|
|
Load smarty template for use in BODY
Tags:
Parameters:
method MailSend [line 536]
bool MailSend(
$header,
$body)
|
|
Sends mail using the PHP mail() function.
Tags:
Parameters:
method MsgHTML [line 1785]
$message MsgHTML(
$message, [
$basedir = ''])
|
|
Evaluates the message and returns modifications for inline images and backgrounds
Tags:
Parameters:
method SecureHeader [line 1961]
string SecureHeader(
string
$str)
|
|
Strips newlines to prevent header injection.
Tags:
Parameters:
method Send [line 447]
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.
Tags:
method SendmailSend [line 504]
bool SendmailSend(
$header,
$body)
|
|
Sends mail using the $Sendmail program.
Tags:
Parameters:
method set [line 1927]
void set(
string
$name, [mixed
$value = ''])
|
|
Set (or reset) Class Objects (variables)
Usage Example: $page->set('X-Priority', '3');
Tags:
Parameters:
method SetLanguage [line 733]
bool SetLanguage(
[string
$lang_type = 'en'], [string
$lang_path = 'language/'])
|
|
Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.
Tags:
Parameters:
method SetMessageType [line 1163]
Sets the message type.
Tags:
method SetWordWrap [line 919]
Set the body wrapping.
Tags:
method Sign [line 1975]
void Sign(
$cert_filename, string
$key_filename, string
$key_pass)
|
|
Set the private key file and password to sign the message.
Tags:
Parameters:
method SmtpClose [line 715]
Closes the active SMTP session if one exists.
Tags:
method SmtpConnect [line 653]
Initiates a connection to an SMTP server. Returns false if the operation failed.
Tags:
method SmtpSend [line 586]
bool SmtpSend(
$header,
$body)
|
|
Sends mail via SMTP using PhpSMTP (Author: Chris Ryan). Returns bool. Returns false if there is a bad MAIL FROM, RCPT, or DATA input.
Tags:
Parameters:
method TextLine [line 1192]
Returns a formatted mail line.
Tags:
Parameters:
method tplAssign [line 315]
boolean tplAssign(
string
$var, mixed
$value)
|
|
Assign variable to template engine
Tags:
Parameters:
method UTF8CharBoundary [line 881]
int UTF8CharBoundary(
string
$encodedText, int
$maxLength)
|
|
Finds last character boundary prior to maxLength in a utf-8 quoted (printable) encoded string.
Original written by Colin Brown.
Tags:
Parameters:
method WrapText [line 799]
string WrapText(
$message,
$length, [
$qp_mode = false])
|
|
Wraps message for use with mailers that do not automatically perform wrapping and for quoted-printable.
Original written by philippe.
Tags:
Parameters:
method _mime_types [line 1823]
mime _mime_types(
[
$ext = ''])
|
|
Gets the mime type of the embedded or inline image
Tags:
Parameters: