API16

API16:JMail/Send

From Joomla! Documentation

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;
}



Examples

Code Examples