Difference between revisions of "JUtility::sendAdminMail"
From Joomla! Documentation
m (→User contributed notes: moving preparation) |
m (preparing for archive only) |
||
(2 intermediate revisions by the same user not shown) | |||
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"> | ||
public static function sendAdminMail ( | public static function sendAdminMail ( | ||
Line 66: | Line 64: | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JUtility::sendAdminMail source code''' on [[jplatform:utilities/utility.php#cl-61|BitBucket]] | * {{JVer|11.1}} '''JUtility::sendAdminMail source code''' on [[jplatform:utilities/utility.php#cl-61|BitBucket]] | ||
− | * {{JVer|11.1}} Class [[JUtility | + | * {{JVer|11.1}} Class [[API17:JUtility|JUtility]] |
− | * {{JVer|11.1}} Subpackage [[Subpackage_Utilities | + | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] |
− | * [[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]