JMail/Send
From Joomla! Documentation
< API16:JMail
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Send the mail
Syntax[edit]
Send()
Returns[edit]
mixed True if successful, a object otherwise
Defined in[edit]
libraries/joomla/mail/mail.php
Importing[edit]
jimport( 'joomla.mail.mail' );
Source Body[edit]
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;
}
Examples[edit]
Code Examples[edit]