Este mensaje fue enviado por <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT
FACE=\"Arial\" SIZE=\"12\" COLOR=\"#000000\" LETTERSPACING=\"0\"
KERNING=\"0\">natali</FONT></P></TEXTFORMAT>
Su e-mail es: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\"
SIZE=\"12\" COLOR=\"#000000\" LETTERSPACING=\"0\"
KERNING=\"0\">nachu|hotmail</FONT></P></TEXTFORMAT>
Mensaje: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\"
SIZE=\"12\" COLOR=\"#000000\" LETTERSPACING=\"0\" KERNING=\"0\">dale q se me va la
vida!!!!!!!!!</FONT></P></TEXTFORMAT>
Enviado el 17/05/2012
El código del botón ENVIAR en flash es el siguiente:
on(release)
{
if(txt_nombre.text=="" or txt_mail.text=="" or txt_mensaje.text=="")
{
gotoAndPlay(2)
}
else
{
loadVariablesNum("send.php",0,"post")
gotoAndPlay(3)
}
}
El Código PHP es el sig:
<?
$remite = "[email protected]";
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$mensaje = "Este mensaje fue enviado por " . $nombre . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para = '[email protected]';
$asunto = 'Mensaje desde la Web';
$regreso="archivo";
$header = 'From: ' . $remite . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$headers .= "Content-type: text/plain; charset=utf-8\r\n";
$headers .= "Content-Transfer-Encoding: quoted-printable\r\n";
ini_set(sendmail_from,'[email protected]');
mail($para, $asunto, utf8_decode($mensaje), $header);
header('location:');
?>
Ya he leído los post de cómo puedo solucionarlo pero ninguno funciona.. Pienso que seguramente hay un error en el código que no sé solucionar... Como verán soy muy inexperta en el tema. Si alguien me puede ayudar lo agradezco!!