PDA

View Full Version : OUch Contact form No longer when filled out comes to my Outlook Express


Sray82
10-28-03, 12:14 PM
Anyone have an ideal what could of happen to my contact form, script?... its always worked, before... Just checked last night because of some posts i read on here... and Mine isnt no longer sending the filed out form to my email address...
www.homesedona.com this is how its always been used on the server...

#!/usr/bin/perl
################################################## ############################

also below:

# Enter the location of sendmail.
$mailprogram = "sendmail -t";

Its always worked from day one like this, unless the path has changed for sendmail, are what ever I don't no what is up... cause it hasnt been changed are messed with, and did work fine when testing it a few months ago.... thanks.. sylvia

stevel
10-28-03, 01:23 PM
I just tried my form-mail script and it worked ok...

BerksWebGuy
10-28-03, 05:55 PM
Mine works OK...and I sent you a test one...see if you got it. May have been a temp glitch.

Sray82
10-28-03, 06:12 PM
Hi i checked my email , when reading that you had sent me a test though my contact form... I didn't receive it.... did you receive the auto response though your email after filling out the form?

I will also put a bit more on here to show you how my script is set up to work my contact form.. again this has always worked before, and also in testing it in the past.. thats why im wondering if the path, are something has changed...

#!/usr/bin/perl

# Enter the location of sendmail.
$mailprogram = "sendmail -t";



# Enter the fields that are required. They should each be in quotes and
# separated by a comma. If no fields are required, change the next line
# to @required = ();
@required = ('email','subject');

# Enter your e-mail address. Be sure to put a \ in front of the @.
#(user@domain.com becomes user\@domain.com)
#$youremail ="something\@cybertrails.com";
$youremail="sure\@preferred.com, work\@hotmail.com, help\@cybertrails.com";

thanks again.. hopefully i can get this working again... Sylvia

tbonekkt
10-28-03, 06:14 PM
The correct path to sendmail is:

/usr/sbin/sendmail

So:

$mailprogram = "/usr/sbin/sendmail -t";

Sray82
10-28-03, 06:39 PM
Hey thanks contact form working now... path was incorrect

sylvia

stevel
10-28-03, 08:37 PM
Sorry - I meant that I tried my own site's form.