API15: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
mixed True if successful, a JError object otherwise
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
& Send()
Returns
mixed True if successful, a object otherwise
Defined in
libraries/joomla/mail/mail.php
Importing
jimport( 'joomla.mail.mail' );
Source Body
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; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
