API15:JMail/Send
From Joomla! Documentation
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
Code Examples