PDA

View Full Version : Bizmail cgi script


pinkshiro
07-14-2005, 10:27 AM
Hi,

Is anyone here familiar with the bizmail cgi script? I have been trying to get some help on it, but all support in their messageboards seems to have dissapeared.

Its a form cgi script. If anyone knows about it and has used it, here my problem:- upon submitting, the information gets sent to the .dat file, but I cannot for the life of me get the send_to part to work (the part that sends the e-mail with information). I can get the autoreply to work....but not the send_to to work...at all.

I hope someone has had some experience with this script and can help me out? Thanks

rwedge
07-14-2005, 10:52 PM
I have no experience with bizimail , but looking at the Readme (http://www.bizmailform.com/readme_V2_2.txt) , I would make sure you have the right path to send mail :
------------------------------
$mailprog

Used if you're using "SENDMAIL".
Enter the path to send mail on your server.
Example:
$mailprog = "/usr/lib/sendmail";


------------------------------

pinkshiro
07-15-2005, 12:27 AM
yeah...im actually using smtp instead. theres an option whether you use which one. How can you test to see if the smtp address you have entered works??

rwedge
07-15-2005, 06:28 AM
You should be able to get the path to sendmail from your host or FAQs.
Maybe something like /usr/sbin/sendmail. If you have a cpanel it will list it.

You can also try:#!/usr/bin/perl
my $sendmail=`whereis sendmail`;
print $sendmail;