14 calls to PHPMailer::setError()
Search API
- PHPMailer::addAnAddress in inc/
PHPMailer/ src/ PHPMailer.php - Add an address to one of the recipient arrays or to the ReplyTo array. Addresses that have been added already return false, but do not throw exceptions.
- PHPMailer::addAttachment in inc/
PHPMailer/ src/ PHPMailer.php - Add an attachment from a path on the filesystem. Never use a user-supplied path to a file! Returns false if the file could not be found or read. Explicitly *does not* support passing URLs; PHPMailer is not an HTTP client. If you need to do that, fetch…
- PHPMailer::addEmbeddedImage in inc/
PHPMailer/ src/ PHPMailer.php - Add an embedded (inline) attachment from a file. This can include images, sounds, and just about any other document type. These differ from 'regular' attachments in that they are intended to be displayed inline with the message, not just…
- PHPMailer::addOrEnqueueAnAddress in inc/
PHPMailer/ src/ PHPMailer.php - Add an address to one of the recipient arrays or to the ReplyTo array. Because PHPMailer can't validate addresses with an IDN without knowing the PHPMailer::$CharSet (that can still be modified after calling this function), addition of such…
- PHPMailer::addStringAttachment in inc/
PHPMailer/ src/ PHPMailer.php - Add a string or binary attachment (non-filesystem). This method can be used to attach ascii or binary data, such as a BLOB record from a database.
- PHPMailer::addStringEmbeddedImage in inc/
PHPMailer/ src/ PHPMailer.php - Add an embedded stringified attachment. This can include images, sounds, and just about any other document type. If your filename doesn't contain an extension, be sure to set the $type to an appropriate MIME type.
- PHPMailer::encodeFile in inc/
PHPMailer/ src/ PHPMailer.php - Encode a file attachment in requested format. Returns an empty string on failure.
- PHPMailer::encodeString in inc/
PHPMailer/ src/ PHPMailer.php - Encode a string in requested format. Returns an empty string on failure.
- PHPMailer::postSend in inc/
PHPMailer/ src/ PHPMailer.php - Actually send a message via the selected mechanism.
- PHPMailer::preSend in inc/
PHPMailer/ src/ PHPMailer.php - Prepare a message for sending.
- PHPMailer::send in inc/
PHPMailer/ src/ PHPMailer.php - Create a message and send it. Uses the sending method specified by $Mailer.
- PHPMailer::set in inc/
PHPMailer/ src/ PHPMailer.php - Set or reset instance properties. You should avoid this function - it's more verbose, less efficient, more error-prone and harder to debug than setting properties directly. Usage Example: `$mail->set('SMTPSecure',…
- PHPMailer::setFrom in inc/
PHPMailer/ src/ PHPMailer.php - Set the From and FromName properties.
- PHPMailer::smtpSend in inc/
PHPMailer/ src/ PHPMailer.php - Send mail via SMTP. Returns false if there is a bad MAIL FROM, RCPT, or DATA input.