API16

JMail/getInstance

From Joomla! Documentation

< API16:JMail

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]

Returns the global e-mail object, only creating it if it doesn't already exist.



Syntax[edit]

static getInstance($id= 'Joomla')
Parameter Name Default Value Description
$id 'Joomla' $id The id string for the instance [optional]

Returns[edit]

object The global object

Defined in[edit]

libraries/joomla/mail/mail.php

Importing[edit]

jimport( 'joomla.mail.mail' );

Source Body[edit]

public static function getInstance($id = 'Joomla')
{
        static $instances;

        if (!isset ($instances)) {
                $instances = array ();
        }

        if (empty($instances[$id])) {
                $instances[$id] = new JMail();
        }

        return $instances[$id];
}



Examples[edit]

Code Examples[edit]