Código PHP:
<?php
include_once "conexion.php";
include_once "function_login.php";
$id = $_POST['email'];
$n = 1;
$user = strtolower($id{$n - 1});
switch ($user)
{
case "e":
if(verificar_email_e($_POST['email'],$result) == 1)
{
$destinatario = $result->email;
$asunto = "Cambio de contraseña";
$cuerpo = '
<html>
<head>
<title>SOLICITUD DE CAMBIO DE CONTRASEÑA</title>
</head>
<body>
<h1>SOLICITUD DE CAMBIO DE CONTRASEÑA</h1>
<p>
Ud acaba de solicitar el cambio de su contraseña el cual ha sido cambiado y ahora es el siguiente
<br>
<b>PASS:
<?
$str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
$cad = "";
for($i=0;$i<12;$i++) {
$cad .= substr($str,rand(0,62),1);
}
echo $cad;
?>
</b>
<br>
. CORREO DE PRUEBA
</p>
</body>
</html>
';
//para el envío en formato HTML
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
//dirección del remitente
$headers .= "From: AREA DE SISTEMAS - UPS <[email protected]>\r\n";
//dirección de respuesta, si queremos que sea distinta que la del remitente
$headers .= "Reply-To: AREA DE SISTEMAS - UPS <[email protected]>\r\n";
mail($destinatario,$asunto,$cuerpo,$headers);
echo '<script language = javascript>alert("Correo enviado correctamente,Fijese su bandeja")
location.href="index.php"
</script>';
}
else
{
echo '<script language = javascript>alert("ID incorrecto, vuelva introducir ID")
location.href="index.php"
</script>';
}
break;
}
?>
Código PHP:
<body>
<h1>SOLICITUD DE CAMBIO DE CONTRASEÑA</h1>
<p>
Ud acaba de solicitar el cambio de su contraseña el cual ha sido cambiado y ahora es el siguiente
<br>
<b>PASS:
<?
$str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
$cad = "";
for($i=0;$i<12;$i++) {
$cad .= substr($str,rand(0,62),1);
}
echo $cad;
?>
</b>
<br>
. CORREO DE PRUEBA
</p>
</body>
</html>
osea no me lee el php, ayuden please Gracias anticipadamente xD