-
$AltBody
-
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.
-
$attachment
-
-
AddAddress
-
Adds a "To" address.
-
AddAttachment
-
Adds an attachment from a path on the filesystem.
-
AddBCC
-
Adds a "Bcc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
AddCC
-
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
-
AddChange
-
Adds a change entry.
-
AddCustomHeader
-
Adds a custom header.
-
AddEmbeddedImage
-
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".
-
AddNote
-
Adds a simple note to the message.
-
AddrAppend
-
Creates recipient headers.
-
AddReplyTo
-
Adds a "Reply-to" address.
-
AddrFormat
-
Formats an address correctly.
-
AddStringAttachment
-
Adds a string or binary attachment (non-filesystem) to the list.
-
addTest
-
-
assert
-
-
Assert
-
Class Assert
-
assertEquals
-
-
assertRegexp
-
-
AttachAll
-
Attaches all fs, string, and binary attachments to the message.
-
Authenticate
-
Performs SMTP authentication. Must be run after running the Hello() method. Returns true if successfully authenticated.
-
$cc
-
-
$ChangeLog
-
Holds the change log.
-
$CharSet
-
Sets the CharSet of the message.
-
$ConfirmReadingTo
-
Sets the email address that a reading confirmation will be sent.
-
$ContentType
-
Sets the Content-type of the message.
-
$CRLF
-
SMTP reply line ending
-
$CustomHeader
-
-
CheckChanges
-
Check which default settings have been changed for the report.
-
ClearAddresses
-
Clears all recipients assigned in the TO array. Returns void.
-
ClearAllRecipients
-
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
-
ClearAttachments
-
Clears all previously set filesystem, string, and binary attachments. Returns void.
-
ClearBCCs
-
Clears all recipients assigned in the BCC array. Returns void.
-
ClearCCs
-
Clears all recipients assigned in the CC array. Returns void.
-
ClearCustomHeaders
-
Clears all custom headers. Returns void.
-
ClearReplyTos
-
Clears all recipients assigned in the ReplyTo array. Returns void.
-
Close
-
Closes the socket and cleans up the state of the class.
-
Connect
-
Connect to the server specified on the port specified.
-
Connected
-
Returns true if connected to a server otherwise false
-
countFailures
-
-
countTestCases
-
-
countTestCases
-
-
countTests
-
-
CreateBody
-
Assembles the message body. Returns an empty string on failure.
-
CreateHeader
-
Assembles message header.
-
C_mailer
-
C_mailer - PHPMailer class extension
-
class.phpmailer.php
-
-
class.smtp.php
-
-
$Sender
-
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
-
Sets the path of the sendmail program.
-
$smtp
-
-
$SMTPAuth
-
Sets SMTP authentication. Utilizes the Username and Password variables.
-
$SMTPDebug
-
Sets SMTP class debugging on or off.
-
$SMTPKeepAlive
-
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_conn
-
-
$SMTP_PORT
-
SMTP server port
-
$Subject
-
Sets the Subject of the message.
-
Send
-
Starts a mail transaction from the email address specified in
-
Send
-
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
-
Starts a mail transaction from the email address specified in
-
SendHello
-
Sends a HELO/EHLO command.
-
SendmailSend
-
Sends mail using the $Sendmail program.
-
SendOrMail
-
Starts a mail transaction from the email address specified in
-
ServerHostname
-
Returns the server hostname or 'localhost.localdomain' if unknown.
-
ServerVar
-
Returns the appropriate server variable. Should work with both PHP 4.1.0+ as well as older versions. Returns an empty string if nothing is found.
-
SetAddress
-
Adds all of the addresses
-
SetError
-
Replace the default SetError
-
SetError
-
Adds the error message to the error container.
-
SetLanguage
-
Sets the language for all class error messages. Returns false if it cannot load the language file. The default language type is English.
-
SetMessageType
-
Sets the message type.
-
setUp
-
-
setUp
-
Run before each test is started.
-
SetWordWrap
-
Set the body wrapping.
-
shouldStop
-
-
SMTP
-
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.
-
SMTP
-
Initialize the class so that the data is in a known state.
-
SmtpClose
-
Closes the active SMTP session if one exists.
-
SmtpConnect
-
Initiates a connection to an SMTP server. Returns false if the operation failed.
-
SmtpSend
-
Sends mail via SMTP using PhpSMTP (Author: Chris Ryan). Returns bool. Returns false if there is a bad MAIL FROM, RCPT, or DATA input.
-
stop
-