[PHPMailer] element index

Package indexes

All elements
a b c d e f g h i l m n p q r s t u v w _
_
top
_createResult
_endTest
_endTest
TestResult::_endTest() in phpunit.php
_startTest
_startTest
a
top
$AltBody
PHPMailer::$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.
$attachment
PHPMailer::$attachment in class.phpmailer.php
AddAddress
PHPMailer::AddAddress() in class.phpmailer.php
Adds a "To" address.
AddAttachment
PHPMailer::AddAttachment() in class.phpmailer.php
Adds an attachment from a path on the filesystem.
AddBCC
PHPMailer::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
PHPMailer::AddCC() in class.phpmailer.php
Adds a "Cc" address. Note: this function works with the SMTP mailer on win32, not with the "mail" mailer.
AddChange
phpmailerTest::AddChange() in phpmailer_test.php
Adds a change entry.
AddCustomHeader
PHPMailer::AddCustomHeader() in class.phpmailer.php
Adds a custom header.
AddEmbeddedImage
PHPMailer::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".
AddNote
phpmailerTest::AddNote() in phpmailer_test.php
Adds a simple note to the message.
AddrAppend
PHPMailer::AddrAppend() in class.phpmailer.php
Creates recipient headers.
AddReplyTo
PHPMailer::AddReplyTo() in class.phpmailer.php
Adds a "Reply-to" address.
AddrFormat
PHPMailer::AddrFormat() in class.phpmailer.php
Formats an address correctly.
AddStringAttachment
PHPMailer::AddStringAttachment() in class.phpmailer.php
Adds a string or binary attachment (non-filesystem) to the list.
addTest
TestSuite::addTest() in phpunit.php
assert
Assert::assert() in phpunit.php
Assert
Assert in phpunit.php
Class Assert
assertEquals
Assert::assertEquals() in phpunit.php
assertRegexp
Assert::assertRegexp() in phpunit.php
AttachAll
PHPMailer::AttachAll() in class.phpmailer.php
Attaches all fs, string, and binary attachments to the message.
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
$bcc
PHPMailer::$bcc in class.phpmailer.php
$Body
PHPMailer::$Body in class.phpmailer.php
Sets the Body of the message. This can be either an HTML or text body.
$boundary
PHPMailer::$boundary in class.phpmailer.php
BuildBody
phpmailerTest::BuildBody() in phpmailer_test.php
Build the body of the message in the appropriate format.
c
top
$cc
PHPMailer::$cc in class.phpmailer.php
$ChangeLog
phpmailerTest::$ChangeLog in phpmailer_test.php
Holds the change log.
$CharSet
PHPMailer::$CharSet in class.phpmailer.php
Sets the CharSet of the message.
$ConfirmReadingTo
PHPMailer::$ConfirmReadingTo in class.phpmailer.php
Sets the email address that a reading confirmation will be sent.
$ContentType
PHPMailer::$ContentType in class.phpmailer.php
Sets the Content-type of the message.
$CRLF
SMTP::$CRLF in class.smtp.php
SMTP reply line ending
$CustomHeader
PHPMailer::$CustomHeader in class.phpmailer.php
CheckChanges
phpmailerTest::CheckChanges() in phpmailer_test.php
Check which default settings have been changed for the report.
ClearAddresses
PHPMailer::ClearAddresses() in class.phpmailer.php
Clears all recipients assigned in the TO array. Returns void.
ClearAllRecipients
PHPMailer::ClearAllRecipients() in class.phpmailer.php
Clears all recipients assigned in the TO, CC and BCC array. Returns void.
ClearAttachments
PHPMailer::ClearAttachments() in class.phpmailer.php
Clears all previously set filesystem, string, and binary attachments. Returns void.
ClearBCCs
PHPMailer::ClearBCCs() in class.phpmailer.php
Clears all recipients assigned in the BCC array. Returns void.
ClearCCs
PHPMailer::ClearCCs() in class.phpmailer.php
Clears all recipients assigned in the CC array. Returns void.
ClearCustomHeaders
PHPMailer::ClearCustomHeaders() in class.phpmailer.php
Clears all custom headers. Returns void.
ClearReplyTos
PHPMailer::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.
Connected
SMTP::Connected() in class.smtp.php
Returns true if connected to a server otherwise false
countFailures
countTestCases
countTestCases
countTests
CreateBody
PHPMailer::CreateBody() in class.phpmailer.php
Assembles the message body. Returns an empty string on failure.
CreateHeader
PHPMailer::CreateHeader() in class.phpmailer.php
Assembles message header.
C_mailer
C_mailer in tce_class_mailer.php
C_mailer - PHPMailer class extension
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
PHPMailer::$Encoding in class.phpmailer.php
Sets the Encoding of the message. Options for this are "8bit", "7bit", "binary", "base64", and "quoted-printable".
$error
SMTP::$error in class.smtp.php
$ErrorInfo
PHPMailer::$ErrorInfo in class.phpmailer.php
Holds the most recent mailer error message.
$error_count
PHPMailer::$error_count in class.phpmailer.php
EncodeFile
PHPMailer::EncodeFile() in class.phpmailer.php
Encodes attachment in requested format. Returns an empty string on failure.
EncodeHeader
PHPMailer::EncodeHeader() in class.phpmailer.php
Encode a header string to best of Q, B, quoted or none.
EncodeQ
PHPMailer::EncodeQ() in class.phpmailer.php
Encode string to q encoding.
EncodeQP
PHPMailer::EncodeQP() in class.phpmailer.php
Encode string to quoted-printable.
EncodeString
PHPMailer::EncodeString() in class.phpmailer.php
Encodes string to requested format. Returns an empty string on failure.
EndBoundary
PHPMailer::EndBoundary() in class.phpmailer.php
Returns the end of a message boundary.
error
TestCase::error() in phpunit.php
Exception
Exception::Exception() in phpunit.php
Exception
Exception in phpunit.php
Class Exception
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
$fExceptions
TestCase::$fExceptions in phpunit.php
$fExceptions
$fFailedTestName
$fFailures
TestResult::$fFailures in phpunit.php
$fName
TestCase::$fName in phpunit.php
$fResult
TestCase::$fResult in phpunit.php
$From
PHPMailer::$From in class.phpmailer.php
Sets the From email address for the message.
$FromName
PHPMailer::$FromName in class.phpmailer.php
Sets the From name of the message.
$fRunTests
TestResult::$fRunTests in phpunit.php
$fStop
TestResult::$fStop in phpunit.php
$fTests
TestSuite::$fTests in phpunit.php
fail
TestCase::fail() in phpunit.php
failed
TestCase::failed() in phpunit.php
failNotEquals
FixEOL
PHPMailer::FixEOL() in class.phpmailer.php
Changes every end of line from CR or LF to CRLF.
g
top
get
get() in phpmailer_test.php
Create and run test instance.
GetBoundary
PHPMailer::GetBoundary() in class.phpmailer.php
Returns the start of a message boundary.
getExceptions
getExceptions
getFailures
getMessage
getTestName
get_lines
SMTP::get_lines() in class.smtp.php
Read in as many lines as possible either before eof or socket timeout occurs on the operation.
h
top
$Helo
PHPMailer::$Helo in class.phpmailer.php
Sets the SMTP HELO of the message (Default is $Hostname).
$helo_rply
SMTP::$helo_rply in class.smtp.php
$Host
PHPMailer::$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").
$Host
phpmailerTest::$Host in phpmailer_test.php
Holds the SMTP mail host.
$Hostname
PHPMailer::$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'.
HeaderLine
PHPMailer::HeaderLine() in class.phpmailer.php
Returns a formatted header line.
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
InlineImageExists
PHPMailer::InlineImageExists() in class.phpmailer.php
Returns true if an inline attachment is present.
IsError
PHPMailer::IsError() in class.phpmailer.php
Returns true if an error occurred.
IsHTML
PHPMailer::IsHTML() in class.phpmailer.php
Sets message type to HTML.
IsMail
PHPMailer::IsMail() in class.phpmailer.php
Sets Mailer to send message using PHP mail() function.
IsQmail
PHPMailer::IsQmail() in class.phpmailer.php
Sets Mailer to send message using the qmail MTA.
IsSendmail
PHPMailer::IsSendmail() in class.phpmailer.php
Sets Mailer to send message using the $Sendmail program.
IsSMTP
PHPMailer::IsSMTP() in class.phpmailer.php
Sets Mailer to send message using SMTP.
l
top
$language
C_mailer::$language in tce_class_mailer.php
language array
$language
PHPMailer::$language in class.phpmailer.php
$LE
PHPMailer::$LE in class.phpmailer.php
Lang
C_mailer::Lang() in tce_class_mailer.php
Returns a message in the appropriate language.
Lang
PHPMailer::Lang() in class.phpmailer.php
Returns a message in the appropriate language.
m
top
$Mail
phpmailerTest::$Mail in phpmailer_test.php
Holds the default phpmailer instance.
$Mailer
PHPMailer::$Mailer in class.phpmailer.php
Method to send mail: ("mail", "sendmail", or "smtp").
$message
Exception::$message in phpunit.php
$message_type
PHPMailer::$message_type in class.phpmailer.php
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.
MailSend
PHPMailer::MailSend() in class.phpmailer.php
Sends mail using the PHP mail() function.
n
top
$NoteLog
phpmailerTest::$NoteLog in phpmailer_test.php
Holds the note log.
name
TestCase::name() in phpunit.php
Noop
SMTP::Noop() in class.smtp.php
Sends the command NOOP to the SMTP server.
p
top
$Password
PHPMailer::$Password in class.phpmailer.php
Sets SMTP password.
$PluginDir
PHPMailer::$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
PHPMailer::$Port in class.phpmailer.php
Sets the default SMTP server port.
$Priority
PHPMailer::$Priority in class.phpmailer.php
Email priority (1 = High, 3 = Normal, 5 = low).
PHPMailer
PHPMailer in class.phpmailer.php
PHPMailer - PHP email transport class
phpmailerTest
phpmailerTest::phpmailerTest() in phpmailer_test.php
Class constuctor.
phpmailerTest
phpmailerTest in phpmailer_test.php
Performs authentication tests
phpmailer.lang-br.php
phpmailer.lang-br.php in phpmailer.lang-br.php
phpmailer.lang-ca.php
phpmailer.lang-ca.php in phpmailer.lang-ca.php
phpmailer.lang-cz.php
phpmailer.lang-cz.php in phpmailer.lang-cz.php
phpmailer.lang-de.php
phpmailer.lang-de.php in phpmailer.lang-de.php
phpmailer.lang-dk.php
phpmailer.lang-dk.php in phpmailer.lang-dk.php
phpmailer.lang-en.php
phpmailer.lang-en.php in phpmailer.lang-en.php
phpmailer.lang-es.php
phpmailer.lang-es.php in phpmailer.lang-es.php
phpmailer.lang-fi.php
phpmailer.lang-fi.php in phpmailer.lang-fi.php
phpmailer.lang-fo.php
phpmailer.lang-fo.php in phpmailer.lang-fo.php
phpmailer.lang-fr.php
phpmailer.lang-fr.php in phpmailer.lang-fr.php
phpmailer.lang-hu.php
phpmailer.lang-hu.php in phpmailer.lang-hu.php
phpmailer.lang-it.php
phpmailer.lang-it.php in phpmailer.lang-it.php
phpmailer.lang-ja.php
phpmailer.lang-ja.php in phpmailer.lang-ja.php
phpmailer.lang-nl.php
phpmailer.lang-nl.php in phpmailer.lang-nl.php
phpmailer.lang-no.php
phpmailer.lang-no.php in phpmailer.lang-no.php
phpmailer.lang-pl.php
phpmailer.lang-pl.php in phpmailer.lang-pl.php
phpmailer.lang-ro.php
phpmailer.lang-ro.php in phpmailer.lang-ro.php
phpmailer.lang-ru.php
phpmailer.lang-ru.php in phpmailer.lang-ru.php
phpmailer.lang-se.php
phpmailer.lang-se.php in phpmailer.lang-se.php
phpmailer.lang-tr.php
phpmailer.lang-tr.php in phpmailer.lang-tr.php
phpmailer_test.php
phpmailer_test.php in phpmailer_test.php
phpunit.php
phpunit.php in phpunit.php
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
$ReplyTo
PHPMailer::$ReplyTo in class.phpmailer.php
Recipient
SMTP::Recipient() in class.smtp.php
Sends the command RCPT to the SMTP server with the TO: argument of $to.
report
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.
RFCDate
PHPMailer::RFCDate() in class.phpmailer.php
Returns the proper RFC 822 formatted date.
run
TestSuite::run() in phpunit.php
run
TestCase::run() in phpunit.php
run
TestResult::run() in phpunit.php
run
TestRunner::run() in phpunit.php
runBare
TestCase::runBare() in phpunit.php
runTest
TestCase::runTest() in phpunit.php
s
top
$Sender
PHPMailer::$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
PHPMailer::$Sendmail in class.phpmailer.php
Sets the path of the sendmail program.
$smtp
PHPMailer::$smtp in class.phpmailer.php
$SMTPAuth
PHPMailer::$SMTPAuth in class.phpmailer.php
Sets SMTP authentication. Utilizes the Username and Password variables.
$SMTPDebug
PHPMailer::$SMTPDebug in class.phpmailer.php
Sets SMTP class debugging on or off.
$SMTPKeepAlive
PHPMailer::$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_conn
SMTP::$smtp_conn in class.smtp.php
$SMTP_PORT
SMTP::$SMTP_PORT in class.smtp.php
SMTP server port
$Subject
PHPMailer::$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
PHPMailer::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
SendHello
SMTP::SendHello() in class.smtp.php
Sends a HELO/EHLO command.
SendmailSend
PHPMailer::SendmailSend() in class.phpmailer.php
Sends mail using the $Sendmail program.
SendOrMail
SMTP::SendOrMail() in class.smtp.php
Starts a mail transaction from the email address specified in
ServerHostname
PHPMailer::ServerHostname() in class.phpmailer.php
Returns the server hostname or 'localhost.localdomain' if unknown.
ServerVar
PHPMailer::ServerVar() in class.phpmailer.php
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
phpmailerTest::SetAddress() in phpmailer_test.php
Adds all of the addresses
SetError
C_mailer::SetError() in tce_class_mailer.php
Replace the default SetError
SetError
PHPMailer::SetError() in class.phpmailer.php
Adds the error message to the error container.
SetLanguage
PHPMailer::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.
SetMessageType
PHPMailer::SetMessageType() in class.phpmailer.php
Sets the message type.
setUp
TestCase::setUp() in phpunit.php
setUp
phpmailerTest::setUp() in phpmailer_test.php
Run before each test is started.
SetWordWrap
PHPMailer::SetWordWrap() in class.phpmailer.php
Set the body wrapping.
shouldStop
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.
SMTP
SMTP::SMTP() in class.smtp.php
Initialize the class so that the data is in a known state.
SmtpClose
PHPMailer::SmtpClose() in class.phpmailer.php
Closes the active SMTP session if one exists.
SmtpConnect
PHPMailer::SmtpConnect() in class.phpmailer.php
Initiates a connection to an SMTP server. Returns false if the operation failed.
SmtpSend
PHPMailer::SmtpSend() in class.phpmailer.php
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
TestResult::stop() in phpunit.php
t
top
$Timeout
PHPMailer::$Timeout in class.phpmailer.php
Sets the SMTP server timeout in seconds. This function will not work with the win32 version.
$to
PHPMailer::$to in class.phpmailer.php
tce_class_mailer.php
tce_class_mailer.php in tce_class_mailer.php
tearDown
TestCase::tearDown() in phpunit.php
tearDown
phpmailerTest::tearDown() in phpmailer_test.php
Run after each test is completed.
TestCase
TestCase in phpunit.php
Class testCase
TestCase
TestCase::TestCase() in phpunit.php
TestFailure
TestFailure in phpunit.php
Class testFailure
TestFailure
TestResult
TestResult in phpunit.php
Class testResult
TestResult
TestRunner
TestRunner in phpunit.php
Class TestRunner
TestSuite
TestSuite in phpunit.php
Class TestSuite
TestSuite
TestSuite::TestSuite() in phpunit.php
test_AltBody
phpmailerTest::test_AltBody() in phpmailer_test.php
Simple multipart/alternative test.
test_AltBody_Attachment
Simple HTML and attachment test
test_DenialOfServiceAttack
Tests this denial of service attack:
test_Embedded_Image
An embedded attachment test.
test_Error
phpmailerTest::test_Error() in phpmailer_test.php
test_Html
phpmailerTest::test_Html() in phpmailer_test.php
Try a plain message.
test_HTML_Attachment
Simple HTML and attachment test
test_Low_Priority
Try a plain message.
test_MultipleSend
test_Multiple_Plain_FileAttachment
Simple plain file attachment test.
test_Multi_Embedded_Image
An embedded attachment test.
test_Plain_StringAttachment
Simple plain string attachment test.
test_Quoted_Printable
Plain quoted-printable message.
test_SmtpKeepAlive
test_WordWrap
phpmailerTest::test_WordWrap() in phpmailer_test.php
Try a plain message.
TextLine
PHPMailer::TextLine() in class.phpmailer.php
Returns a formatted mail line.
TextTestResult
TextTestResult in phpunit.php
Class TextTestResult
TextTestResult
trace
trace() in phpunit.php
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
PHPMailer::$Username in class.phpmailer.php
Sets SMTP username.
v
top
$Version
PHPMailer::$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
PHPMailer::$WordWrap in class.phpmailer.php
Sets word wrapping on the body of the message to a given number of characters.
WrapText
PHPMailer::WrapText() in class.phpmailer.php
Wraps message for use with mailers that do not automatically perform wrapping and for quoted-printable.
a b c d e f g h i l m n p q r s t u v w _