Alguien me puede ayudar a revisar un formulario e contacto?
es un formularios hecho en flash as2 se envia por perl con archivo .pl
el sitio esta alojado en yahoo hosting y no permite archivos .cgi
dicho archivo es el famoso FormMail Matt Wrightlo
ya modifique lo que dicen las instruccines pero no funciona solo dice q se envia pero no llega nada
lo puse q se enviara a un correo q pertenece a el mismo servidor para q sea corro local y nada
yahoo me sugiere un script pero no se como adptarlo al archivo .pl qu tengo
el script es:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
$title='mail test';
$to='[email protected]';
$from= '[email protected]';
$subject='Using Sendmail';
open(MAIL, "|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: $subject\n\n";
## Mail Body
print MAIL "This is a test message from Yahoo! \n";
close(MAIL);
print "<html><head><title>$title<
/title></head>\n<body>\n\n";
## START HTML content
print "<h1>$title</h1>\n";
print "<p>A message has been sent from $from to $to";
## END HTML CONTENT