API15

Difference between revisions of "JMail/Send"

From Joomla! Documentation

< API15:JMail
(New page: ===Description=== mixed True if successful, a JError object otherwise <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<...)
 
m (removing red link to edit, no existant pages)
Line 4: Line 4:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JMail/Send|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JMail/Send}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 42: Line 42:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JMail/Send|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JMail/Send}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 57: Line 57:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:35, 12 May 2013

The "API15" 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]

mixed True if successful, a JError object otherwise


[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

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]

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[edit]

<CodeExamplesForm />