$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.
$Body = ""
[line 87]
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 36]
Sets the CharSet of the message.
$ConfirmReadingTo = ""
[line 134]
Sets the email address that a reading confirmation will be sent.
$ContentType = "text/plain"
[line 42]
Sets the Content-type of the message.
$Encoding = "8bit"
[line 49]
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
$ErrorInfo = ""
[line 55]
Holds the most recent mailer error message.
$From = "root@localhost"
[line 61]
Sets the From email address for the message.
$FromName = "Root User"
[line 67]
Sets the From name of the message.
$Helo = ""
[line 168]
Sets the SMTP HELO of the message (Default is $Hostname).
$Host = "localhost"
[line 156]
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 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'.
$Mailer = "mail"
[line 109]
Method to send mail: ("mail", "sendmail", or "smtp").
$Password = ""
[line 186]
Sets SMTP password.
$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.
$Port = 25
[line 162]
Sets the default SMTP server port.
$Priority = 3
[line 30]
Email priority (1 = High, 3 = Normal, 5 = low).
$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.
$Sendmail = "/usr/sbin/sendmail"
[line 115]
Sets the path of the sendmail program.
$SMTPAuth = false
[line 174]
Sets SMTP authentication. Utilizes the Username and Password variables.
$SMTPDebug = false
[line 199]
Sets SMTP class debugging on or off.
$SMTPKeepAlive = false
[line 207]
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 80]
Sets the Subject of the message.
$Timeout = 10
[line 193]
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
$Username = ""
[line 180]
Sets SMTP username.
$Version = "1.72"
[line 128]
Holds PHPMailer version.
$WordWrap = 0
[line 103]
Sets word wrapping on the body of the message to a given number of characters.