API16:JFactory/getMailer
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get a mailer object
Description:JFactory/getMailer
Syntax
static getMailer()
Returns
object
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
public static function getMailer() { if (! is_object(JFactory::$mailer)) { JFactory::$mailer = JFactory::_createMailer(); } $copy = clone JFactory::$mailer; return $copy; }
[Edit See Also] SeeAlso:JFactory/getMailer
Examples
<CodeExamplesForm />
