API16

API16:JFactory/getMailer

From Joomla! Documentation

Description

Get a mailer object


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

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


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

Examples

Code Examples