$AltBody = ""
[line 98]
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.
$Body = ""
[line 89]
Sets the Body of the message. This can be either an HTML or text body.
If HTML then run IsHTML(true).
$CharSet = "iso-8859-1"
[line 38]
Sets the CharSet of the message.
$ConfirmReadingTo = ""
[line 136]
Sets the email address that a reading confirmation will be sent.
$ContentType = "text/plain"
[line 44]
Sets the Content-type of the message.
$Encoding = "8bit"
[line 51]
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
$ErrorInfo = ""
[line 57]
Holds the most recent mailer error message.
$From = "root@localhost"
[line 63]
Sets the From email address for the message.
$FromName = "Root User"
[line 69]
Sets the From name of the message.
$Helo = ""
[line 171]
Sets the SMTP HELO of the message (Default is $Hostname).
$Host = "localhost"
[line 159]
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.
$Hostname = ""
[line 144]
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'.
$Mailer = "mail"
[line 111]
Method to send mail: ("mail", "sendmail", or "smtp").
$Password = ""
[line 189]
Sets SMTP password.
$PluginDir = "../class/system/"
[line 124]
Path to PHPMailer plugins. This is now only useful if the SMTP class is in a different directory than the PHP include path.
$Port = 25
[line 165]
Sets the default SMTP server port.
$Priority = 3
[line 32]
Email priority (1 = High, 3 = Normal, 5 = low).
$Sender = ""
[line 76]
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 = "/usr/sbin/sendmail"
[line 117]
Sets the path of the sendmail program.
$SMTPAuth = false
[line 177]
Sets SMTP authentication. Utilizes the Username and Password variables.
$SMTPDebug = false
[line 202]
Sets SMTP class debugging on or off.
$SMTPKeepAlive = false
[line 210]
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().
$Subject = ""
[line 82]
Sets the Subject of the message.
$Timeout = 10
[line 196]
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
$Username = ""
[line 183]
Sets SMTP username.
$Version = "1.71"
[line 130]
Holds PHPMailer version.
$WordWrap = 0
[line 105]
Sets word wrapping on the body of the message to a given number of characters.