API16:JMail/Send
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Send the mail
Syntax
Send()
Returns
mixed True if successful, a object otherwise
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
public function Send() { if (($this->Mailer == 'mail') && ! function_exists('mail')) { return JError::raiseNotice(500, JText::_('MAIL_FUNCTION_DISABLED')); } @$result = parent::Send(); if ($result == false) { // TODO: Set an appropriate error number $result = JError::raiseNotice(500, JText::_($this->ErrorInfo)); } return $result; }
[Edit See Also] SeeAlso:JMail/Send
Examples
<CodeExamplesForm />
