Hola Buenas mira te dejo dos, tienes que copiar el enlace manualmente por que todavia no me deja crear enlaces, soy nuevo en el foro y aun pues hasta que no tenga 30 articulos no podre hacerlo.
No obstante te mando estos dos enlaces uno para hacerlo en jquery y otro para hacerlo en php. No obstante aqui te dejo el codigo para incluso mandarlo en html, es decir lo que viene a ser un boletin jeje.
PRIMERO
http://www.examplesjquery.com/envio-de-formulario-con-php/
SEGUNDO
http://www.examplesjquery.com/formulario-para-enviar-correos-en-jquery/
Código PHP:
Ver original<?php
$siteaddress='examplesjquery.com';
$sitename='examplesjquery.com';
'Content-type: text/html; charset=iso-8859-1\r\n'
.
'';
$asunto = "Contacto desde la web";
$cuerpo = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>'.$sitename.'</title>
<style type="text/css">
<!--
#contenedora {
border: 1px solid #333333;
}
#contenedora #cabecera {
height: 60px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: none;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-top-color: #999999;
border-right-color: #999999;
border-bottom-color: #999999;
border-left-color: #999999;
}
#contenedora #titular {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
background-color: #000000;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 20px;
color: #FFFFFF;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: none;
border-right-style: none;
border-bottom-style: solid;
border-left-style: none;
border-top-color: #CCCCCC;
border-right-color: #CCCCCC;
border-bottom-color: #CCCCCC;
border-left-color: #CCCCCC;
}
#contenedora #contenido {
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #858585;
}
#contenedora #contenido a {
color: #000000;
}
#contenedora #pie {
text-align: center;
font-family: "Times New Roman", Times, serif;
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background-color: #4e4250;
padding: 5px;
}
-->
</style>
</head>
<body>
<table width="500" border="0" cellpadding="0" cellspacing="0" id="contenedora" align="center">
<tr>
<td id="cabecera"><img src="http://www.tuweb.com/images/cabeceramail.jpg" alt="Cabecera de '.$sitename.'" width="600" height="84" /></td>
</tr>
<tr>
<td id="titular">Consulta desde la web</td>
</tr>
<tr>
<td id="contenido">
<p>Nombre: '.$_POST['nombre'].'</p>
<p>Telefono:'.$_POST['telefono'].'</p>
<p>Telefono:'.$_POST['email'].'</p>
<p>Comentarios:'.$_POST['comentarios'].'</p>
<p>'.$sitename.'<br>
<a href="'.$siteaddress.'">'.$siteaddress.'</a><br>
<br><br></td>
</tr>
<tr>
<td id="pie">© '.$sitename.' 2011 </td>
</tr>
</table>
</body>
</html>';
//echo "Enviado al usuario";
// fin del envio al usuario en html
/*******************************************************
ENVIO DE CONFIRMACIÓN DE ENVIO DE CONSULTA AL CLIENTE (EMPRESA)
*******************************************************/
//para el envío en formato HTML
//ruta del mensaje desde origen a destino
//$headers .= "Return-path: ".$adminaddress."\r\n";
//direcciones que recibián copia
//direcciones que recibirán copia oculta
mail($destinatario,$asunto,$cuerpo,$cabeceras); //echo "Enviado al Cliente (empresa)";
// fin del envio al usuario en html
?>
<P align="center"><b>LE AGRADECEMOS TUS COMENTARIOS</B><br />
le agradece su consulta o comentario</p>
<p align="center"> Intentaremos responderle lo antes posible</P>