Código PHP:
<?php
if(isset($_REQUEST['submit'])){
$name = $_REQUEST['name'];
$body = $_REQUEST['body'];
$email = $_REQUEST['email'];
$subject = $_REQUEST['subject'];
$header = 'From: ' . $email . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $name . "\r\n";
$mensaje .= "Su e-mail es: " . $email . " \r\n";
$mensaje .= "Mensaje: " . $body . " \r\n";
$mensaje .= "Enviado el " . date("d/m/y \a \l\a\s H:i:s ");
mail("[email protected]",$subject,utf8_decode($mensaje),$header);
echo "Su mensaje a sido enviado correctamente" ;
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta charset="UTF-8">
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<title> Inicio Ecuaro </title>
</head>
<body >
<header>
<h1 align="center"><img src="imagenes/Ecuaro.jpg" width="20%" height="30%"></h1>
<nav>
<ul id="menu">
<font size="2" face="dotum">
<li style="border-right: 2px solid grey"><a href="index.php">INICIO</a></li>
<li style="border-right: 2px solid grey"><a href="Nosotros.html">NOSOTROS</a></li>
<li style="border-right: 2px solid grey"><a href="Calendario.php">CALENDARIO</a></li>
<li style="border-right: 2px solid grey"><a href="Servicios.html">SERVICIOS</a></li>
<li style="border-right: 2px solid grey"><a href="Contacto.php">CONTACTO</a></li>
</font>
</ul>
</nav>
</header>
<section id="espacio"> <br /> </section>
<section id="contenido">
<div id="Contacto">CONTACTO<br />
<table ><tr><td align="center">
<font class="parrafo" face="dotum">Patricio Gutierrez </font>
</td>
<td align="left">
<font class="parrafo" face="dotum" > Tilostoc<br/> Valle de Bravo,<br/> Estado de Mexico <br/> Mexico
<br/> [email protected]<br/> Tel: 044 726 262 3698</font></td><td width="100%" align="center"><table><td>
<form method="post" >
<table border="2" bgcolor="#AAAAAA">
<tr>
<td><input type="text" value="Name..." id="name" class="input"></td>
<td rowspan="3"><textarea class="textarea" id="body" width="100%" height="100%"></textarea></td>
</tr>
<tr><td ><input class="input" type="text" value="Subject..." id="subject"><br/></td></tr>
<tr><td ><input class="input" type="text" value="Email..." id="email"><br/></td></tr>
<tr><td align="right" colspan="3"><input type="submit" value="Enviar" id="submit"></td></tr>
</form></p></td></tr></table>
<p><img width="15%" src="imagenes/FB.png">
<img width="15%" src="imagenes/twitter.jpg">
<img width="15%" src="imagenes/g+_logo.jpg" ></p></td></tr></table>
</div>
</section>
</body>
</html>
http://www.forosdelweb.com/f142/php-...nciona-880939/ y no entendi mucho. Como configuro el Mailer?