[PHPMailer] element index

Package indexes

All elements
a b c d e f h i m n p q r s t u v w
a
top
$AltBody
mosPHPMailer::$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
mosPHPMailer::AddAddress() in class.phpmailer.php
Adds a "To" address.
AddAttachment
mosPHPMailer::AddAttachment() in class.phpmailer.php
Adds an attachment from a path on the filesystem.
AddBCC
mosPHPMailer::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
mosPHPMailer::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
mosPHPMailer::AddCustomHeader() in class.phpmailer.php
Adds a custom header.
AddEmbeddedImage
mosPHPMailer::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
mosPHPMailer::AddReplyTo() in class.phpmailer.php
Adds a "Reply-to" address.
AddStringAttachment
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
mosPHPMailer::$Body in class.phpmailer.php
Sets the Body of the message. This can be either an HTML or text body.
c
top
$CharSet
mosPHPMailer::$CharSet in class.phpmailer.php
Sets the CharSet of the message.
$ConfirmReadingTo
mosPHPMailer::$ConfirmReadingTo in class.phpmailer.php
Sets the email address that a reading confirmation will be sent.
$ContentType
mosPHPMailer::$ContentType in class.phpmailer.php
Sets the Content-type of the message.
$CRLF
SMTP::$CRLF in class.smtp.php
SMTP reply line ending
ClearAddresses
mosPHPMailer::ClearAddresses() in class.phpmailer.php
Clears all recipients assigned in the TO array. Returns void.
ClearAllRecipients
mosPHPMailer::ClearAllRecipients() in class.phpmailer.php
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
ClearAttachments
mosPHPMailer::ClearAttachments() in class.phpmailer.php
Clears all previously set filesystem, string, and binary attachments. Returns void.
ClearBCCs
mosPHPMailer::ClearBCCs() in class.phpmailer.php
Clears all recipients assigned in the BCC array. Returns void.
ClearCCs
mosPHPMailer::ClearCCs() in class.phpmailer.php
Clears all recipients assigned in the CC array. Returns void.
ClearCustomHeaders
mosPHPMailer::ClearCustomHeaders() in class.phpmailer.php
Clears all custom headers. Returns void.
ClearReplyTos
mosPHPMailer::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.
class.phpmailer.php
class.phpmailer.php in class.phpmailer.php
class.smtp.php
class.smtp.php in class.smtp.php
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
mosPHPMailer::$Encoding in class.phpmailer.php
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
$ErrorInfo
mosPHPMailer::$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
mosPHPMailer::$From in class.phpmailer.php
Sets the From email address for the message.
$FromName
mosPHPMailer::$FromName in class.phpmailer.php
Sets the From name of the message.
h
top
$Helo
mosPHPMailer::$Helo in class.phpmailer.php
Sets the SMTP HELO of the message (Default is $Hostname).
$Host
mosPHPMailer::$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
mosPHPMailer::$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
mosPHPMailer::IsError() in class.phpmailer.php
Returns true if an error occurred.
IsHTML
mosPHPMailer::IsHTML() in class.phpmailer.php
Sets message type to HTML.
IsMail
mosPHPMailer::IsMail() in class.phpmailer.php
Sets Mailer to send message using PHP mail() function.
IsQmail
mosPHPMailer::IsQmail() in class.phpmailer.php
Sets Mailer to send message using the qmail MTA.
IsSendmail
mosPHPMailer::IsSendmail() in class.phpmailer.php
Sets Mailer to send message using the $Sendmail program.
IsSMTP
mosPHPMailer::IsSMTP() in class.phpmailer.php
Sets Mailer to send message using SMTP.
m
top
$Mailer
mosPHPMailer::$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.
mosPHPMailer
mosPHPMailer in class.phpmailer.php
PHPMailer - PHP email transport class
n
top
Noop
SMTP::Noop() in class.smtp.php
Sends the command NOOP to the SMTP server.
p
top
$Password
mosPHPMailer::$Password in class.phpmailer.php
Sets SMTP password.
$PluginDir
mosPHPMailer::$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
mosPHPMailer::$Port in class.phpmailer.php
Sets the default SMTP server port.
$Priority
mosPHPMailer::$Priority in class.phpmailer.php
Email priority (1 = High, 3 = Normal, 5 = low).
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
mosPHPMailer::$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
mosPHPMailer::$Sendmail in class.phpmailer.php
Sets the path of the sendmail program.
$SMTPAuth
mosPHPMailer::$SMTPAuth in class.phpmailer.php
Sets SMTP authentication. Utilizes the Username and Password variables.
$SMTPDebug
mosPHPMailer::$SMTPDebug in class.phpmailer.php
Sets SMTP class debugging on or off.
$SMTPKeepAlive
mosPHPMailer::$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
mosPHPMailer::$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
mosPHPMailer::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
mosPHPMailer::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
mosPHPMailer::SmtpClose() in class.phpmailer.php
Closes the active SMTP session if one exists.
t
top
$Timeout
mosPHPMailer::$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
mosPHPMailer::$Username in class.phpmailer.php
Sets SMTP username.
v
top
$Version
mosPHPMailer::$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
mosPHPMailer::$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