API16:JUtility/sendAdminMail
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
Sends mail to administrator for approval of a user submission
Description:JUtility/sendAdminMail
Syntax
static sendAdminMail($adminName, $adminEmail, $email, $type, $title, $author, $url=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $adminName | $adminName Name of administrator | |
| $adminEmail | $adminEmail Email address of administrator | |
| $email [NOT USED TODO: Deprecate?] | ||
| $type | $type Type of item to approve | |
| $title | $title Title of item to approve | |
| $author | $author Author of item to approve | |
| $url | null |
Returns
boolean True on success
Defined in
libraries/joomla/utilities/utility.php
Importing
jimport( 'joomla.utilities.utility' );
Source Body
public static function sendAdminMail($adminName, $adminEmail, $email, $type, $title, $author, $url = null) { // Get a JMail instance $mail = &JFactory::getMailer(); return $mail->sendAdminMail($adminName, $adminEmail, $email, $type, $title, $author, $url); }
[Edit See Also] SeeAlso:JUtility/sendAdminMail
Examples
<CodeExamplesForm />
