I have put together a perl script using FormsToGo. Everything seems fine and the form returns a successful submission, but i am not receiving the email.
I can email the .pl and .html file if anyone has time to look at it.
what r u trying to do? E-mail every thing that was submitted? If so, u should search CPAN for a mail module or if u are on a *nix platform mailx || sendmail..
my ($email);
use MIME::Lite;
$email = MIME::Lite->new(From => $from,
To => $to,
Subject => $subject,
Type => 'multipart/mixed');
$email->attach(Type => 'TEXT',
Data => $message);
yes max1x, i have about 9 fields that people fill in for an online estimate and a single submit button to send to my email address. I cant work out what is wrong because everything seems correct and i dont have the technical knowledge to see what is wrong. I'm having a look at yours and Zhris's alternatives.
I've been given the:
/usr/sbin/sendmail and
/usr/bin/perl paths from my webspace provider.
Also the whole webspace is apparantly CGI active so no need to a cgi-bin directory.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.