Cita:
Vamos que no "Traduce " el codigo htlm a tablas, imagenes etc...<html>
<head>
<title> Formulario </title>
</head>
<body>
<table width="1000" height="200">
<tr>
<td> <img width="250" height="100"....
<head>
<title> Formulario </title>
</head>
<body>
<table width="1000" height="200">
<tr>
<td> <img width="250" height="100"....
He puesto las siguentes headers
Código PHP:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html\r\n";
$headers .= "To: cuenta de correo". "\r\n";
$headers .= "From: cuenta de correo" . "\r\n" ;
$headers .= "Reply-To: cuenta de correo\r\n";
$headers .= "Return-path: cuenta de correo"."\r\n";
Funcion mail
mail($destinatario,$asunto,$cuerpo,$headers)
Gracias!