API15:JUtility/sendAdminMail
From Joomla! Documentation
Description
Sends mail to administrator for approval of a user submission
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
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
function sendAdminMail( $adminName, $adminEmail, $email, $type, $title, $author, $url = null )
{
$subject = JText::_( 'User Submitted' ) ." '". $type ."'";
$message = sprintf ( JText::_( 'MAIL_MSG_ADMIN' ), $adminName, $type, $title, $author, $url, $url, 'administrator', $type);
$message .= JText::_( 'MAIL_MSG') ."\n";
// Get a JMail instance
$mail =& JFactory::getMailer();
$mail->addRecipient($adminEmail);
$mail->setSubject($subject);
$mail->setBody($message);
return $mail->Send();
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples