Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/10/2009, 10:09
Avatar de dcreate
dcreate
 
Fecha de Ingreso: octubre-2009
Ubicación: Veracruz
Mensajes: 536
Antigüedad: 14 años, 6 meses
Puntos: 22
Pregunta ayuda con mail

Hola compañeros, tengo un problemilla. Tengo una pagina hecha en flash en el cual he puesto un formulario con php. Funciona todo ok, pero el correo que me llega es muy simple y quisiera que me llegase dentro de una tabla:
Este es el codigo que tengo actualmente:

<?php
if ($_POST)
{
$mailTo = "[email protected]";
$mailSubject = "[Contact] Website Contact from - (" . $_POST['name'] . ")";

$Header = "MIME-Version: 1.0\r\n";
$Header .= "Content-type: text/html; charset=iso-8859-1\r\n";
$Header .= "From: " . $_POST['email'] . "\r\n";

$output = "<BR>";
$output .= "Van : " . $_POST['name'] . "<BR><BR>";
$output .= "Type Winkel: " . $_POST['store'] . "<BR><BR>";
$output .= "Email : " . $_POST['mail'] . "<BR><BR>";
$output .= "Telefoon: " . $_POST['telef'] . "<BR><BR>";
$output .= "Bericht : " . $_POST['mens'] . "<BR><BR>";

$output = nl2br($output);

if (mail($mailTo, $mailSubject, stripslashes($output), $Header))
{
echo("&result=1&");
}
else
{
echo("&result=2&");
}
}
else
{
echo("This script runs only in Flash!!!");
}
?>

Me llega esto:

Van : hesters

Type Winkel: inrichting

Email : [email protected]

Telefoon: 0909090

Bericht : test

Quisiera que lo que me llega me llegase dentro de una tabla , no se como hacerlo a ver si me hechais una mano gracias de antemano.
Un saludo