Pf.. Es que no entiendo muy bien eso que me has puesto.
Me lo puedes explicar tú por favor?
Te pongo el código para que me digas
Código:
<!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>Documento sin título</title>
</head>
<body>
<?php
$filename=$_POST['filename'];
$textfield433=$_POST['textfield433'];
$subject = 'Pregunta';
$to = '[email protected]';
$from='Prueba php';
/// Sending email
$headers = "Has recibido la siguiente imagen:
$filename
Y el siguiente texto:
$textfield433
";
$headers .= "";
$headers .= "";
mail($to, $subject, nl2br($mail), $headers);
echo "Thank you for sending your question.<br />
Within the next 24 hours (except weekends) we will answer your question.</span>
<br><br>
Gracias por enviar su pregunta.<br />
En el plazo de 24 horas le responderemos (excepto festivos).</span>
<br>
";
?>
</body>
</html>