Mi problema es el siguiente...
Hice un formulario con flash, el cual envía un correo
pero me llega asi:
Nombre:: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"_sans\" SIZE=\"13\" COLOR=\"#333333\" LETTERSPACING=\"0\" KERNING=\"0\">dfbgd</FONT></P></TEXTFORMAT>
empresa::
e-mail:: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"_sans\" SIZE=\"13\" COLOR=\"#333333\" LETTERSPACING=\"0\" KERNING=\"0\">dfbgdf</FONT></P></TEXTFORMAT>
Mensaje:: <TEXTFORMAT LEADING=\"2\"><P ALIGN=\"LEFT\"><FONT FACE=\"_sans\" SIZE=\"13\" COLOR=\"#333333\" LETTERSPACING=\"0\" KERNING=\"0\">bdfbdfb</FONT></P></TEXTFORMAT>
por que???
estoy usando este codigo en el archivo php
Código PHP :
<?PHP
$archivo = fopen("formulario.csv" , "w");
$datos="nombre:: ".$_POST['nom']." empresa::".$_POST['empresa']." email:: ".$_POST['email']."contacto:: ".$_POST['contacto']." mensaje:: ".$_POST['mensaje'];
fputs ($archivo, $datos);
echo $pulsado;
fclose ($archivo);
?>
<?php
include "MECANISMO WEBSITE/public_html/libmail.php";
$m= new Mail;
$m->From( "MECANISMO" );
$m->To( "[email protected]" );
$m->Subject( "::contacto desde la web::" );
$m->Body( "Nombre:: ".$_POST['nom']."
empresa:: ".$_POST['empresa']."
e-mail:: ".$_POST['email']."
Mensaje:: ".$_POST['mensaje']);
$m->Priority(1) ;
$m->Attach( "formulario.csv", "application/vnd.ms-excel", "attachment" );
$m->Send();
?>en verdad agaradeceria mucho su ayuda, ya que en realidad
