to submit in form of an email.
The perl/cgi script I have written is:
use CGI qw(param);
$name = param(name);
$email = param(email);
$mailto = "webmaster@mysite.com";
$mailprog = 'blat.exe';
$subject = "Contact Form";
$mailfrom = "feedback\@whateverdomain.com";
$miscbody = "insert some body text here";
############################################################
`blat.exe - -subject $subject -to $mailto -f $mailfrom -body "$miscbody. $email, $name"`;
print <<HTML
content-type: text/html
Then the html result page there-after to display the variables and thankyou page, etc. Now, when I hit the submit button, it displays correctly, but there is never any email delivered to the webmaster@mysite.com address.
Any ideas? Anything wrong with my script?
TJ
[edited by: jatar_k at 9:21 pm (utc) on Oct. 1, 2003]
[edit reason] no urls thanks [/edit]