API16

JMail/Send

From Joomla! Documentation

< API16:JMail
Revision as of 17:54, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Send the mail <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Descript...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

[Edit Descripton]

Template:Description:JMail/Send

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

[Edit See Also] Template:SeeAlso:JMail/Send

Examples[edit]

<CodeExamplesForm />