Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/10/2006, 12:39
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Código PHP:
<?
## v5.24 -> apr. 05, 2006
if ( !defined('INCLUDED') ) { die("Access Denied"); }

$plainMessage "Un nuevo reporte de abuso ha sido enviado por '".$_SESSION['memberusern']."'        \n".
                     
"                                                                                            \n".
                     
"Please check the Admin Area -> User Management -> View Abuse Reports page for more details.";

$htmlMessage =  "Un nuevo reporte de abuso ha sido enviado por '".$_SESSION['memberusern']."'        <br>".
                     
"                                                                                            <br>".
                     
"Please check the <strong>Admin Area -> User Management -> View Abuse Reports</strong> page for more details.";

htmlmail($setts['adminemail'],"Nuevo Reporte de Abuso",
$plainMessage,$setts['adminemail'],$htmlMessage);
?>
Te faltaban las ; que terminan el comando en PHP.