Difference between revisions of "JUtility::sendAdminMail"
From Joomla! Documentation
m (clean up) |
m (preparing for archive only) |
||
Line 4: | Line 4: | ||
Sends mail to administrator for approval of a user submission. | Sends mail to administrator for approval of a user submission. | ||
− | + | ||
<source lang="php"> | <source lang="php"> | ||
Line 67: | Line 67: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] | ||
* [[API17:JUtility::sendAdminMail|Other versions of JUtility::sendAdminMail]] | * [[API17:JUtility::sendAdminMail|Other versions of JUtility::sendAdminMail]] | ||
− | + | ||
===User contributed notes=== | ===User contributed notes=== | ||
− | + | === Code Examples === | |
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JUtility::sendAdminMail | category=JUtility::sendAdminMail | ||
− | + | namespace=CodeExample | |
category=MethodExample | category=MethodExample | ||
include=* | include=* |
Latest revision as of 22:56, 24 March 2017
The "API17" 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.
JUtility::sendAdminMail[edit]
Description[edit]
Sends mail to administrator for approval of a user submission.
public static function sendAdminMail (
$adminName
$adminEmail
$email
$type
$title
$author
$url=null
)
Parameter | Type | Default | Description |
---|---|---|---|
$adminName | string | Name of administrator | |
$adminEmail | string | Email address of administrator | |
string | [NOT USED TODO: Deprecate?] | ||
$type | string | Type of item to approve | |
$title | string | Title of item to approve | |
$author | string | Author of item to approve | |
$url | null |
- Returns boolean True on success
- Defined on line 69 of libraries/joomla/utilities/utility.php
See also[edit]
JUtility::sendAdminMail source code on BitBucket
Class JUtility
Subpackage Utilities
- Other versions of JUtility::sendAdminMail
User contributed notes[edit]
Code Examples[edit]