hola maestros tengo un problema para mandar un mail con codigo php , bueno use el instalador easyphp version 1.5 si les sirve de algo(tengo montado el servidro php en mi pc).
gracias de ante mano
<?php
header ("cache-control:no-cache,must-revalidate");
?>
<h1>corre</h1>
<?php
echo "<form method=\"post\" action=$php_self >";
echo "destinatario: <input name=detinatario value=$destinatario ><p>";
echo "motivo del mensaje: <input name=motivo value=$motivo><p>";
echo "texto del mail <textarea name=texto columsn=20 rows=10>";
echo $texto;
echo "</textarea><p>";
echo "<input type=submit name=boton value=enviar>";
echo "</form>";
if ($boton=="enviar")
/*linea 19*/ mail ("$destinatario",$motivo,$texto,"from:elbuenar@hot mail.com\nX-mailer:php");
?>
<center><A HREF=MAILTO:[email protected]?subject=informaci on&body=cuerpo>enviar correo></a></center>
<center><a href="<?php echo "$php_self" ?>">volver</a></center>
</body>
</html>
me manda el siguiente error
Warning: Failed to Connect in c:\php\www\correo.php on line 19