I have sendmail and I'm using formmail through my server. I wrote my code, ftp'd and tested and everything seems to work fine, but the data never gets e-mailed to me please help!!! Here's the code..
<xmp>
<form name="form1" method="post" action=" <p>
<input name="recipient" type="hidden" value="marketing@selfhelp.net">
Simply fill in your name, e-mail address, and
areas of interest below and we'll do the rest.<br>
<br> <input type="text" name="email" value="" size="30"> <div class="SUTableContainer">
<div class="SUrow1Container">
<div class="COL11SU">
<div class="signHolder">* First Name:</div>
<div class="signHolder">* Last Name:</div>
<div class="signHolder">* Email:</div>
</div>
<div class="COL12SU">
<div class="signHolder">
<input class="txtBoxMan" name="FirstName"type="text">
</div>
<div class="signHolder">
<input class="txtBoxMan" name="LastName"type="text">
</div>
<div class="signHolder">
<input class="txtBoxMan" name="Email"type="text">
</div>
</div>
</div>
<div class="SUrow2Container">Area of interests: (Select all that
apply) </div>
<div class="SUrow3Container">
<div class="COL11SULong">
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Source">
Senior Source</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Licensed Home Care">
Licensed Home Care</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Housing">
Senior Housing</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Events"> Events</div>
</div>
<div class="COL12SULong">
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Community Programs">
Community Programs</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Nazi Victim Services">
Nazi Victim Services</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Donate/Volunteer">
Donate/Volunteer</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Activity Centers">
Senior Activity Centers</div>
</div>
</div>
<div class="SUrow2Container">
<div class="signHolder">
<input type="checkbox">
HIV/AIDS Certified Home Care</div>
</div>
<div class="SUrow2Container">
<div class="btnHolder">
<input type="submit" class="submit-button"value="Submit" onClick="return validate();"><input type=hidden name="redirect" value="
</div>
</div>
<div class="SUrow3Container"><div class="lineHeightText">We take your privacy very seriously
and will never pass your details on to any third party. Every
email you receive from us will contain instructions on how to
unsubscribe. For more information please view our <a href="privacy.shtm" target="_top"><span class="linkAU">Privacy
Policy</span></a></div></div>
</div>
</form> </xmp>
Back to top
ATNO/TW
Super Moderator
Joined: 28 May 2003
Location: Pittsburgh PA
Status: Online
Posts: 10449
Posted: Tue Mar 15, 2005 6:23 am Post subject:
--------------------------------------------------------------------------------
At a quick glance it looks like your form is OK.
Have you verified your path to perl and your mail path are correct? The most common reason I know of for your problem is the mail path is wrong. Here's from Matt's own instructions:
Sign up Now! Time is running out.
Back to top
agrotzky
Born
Joined: 14 Mar 2005
Status: Online
Posts: 3
Posted: Tue Mar 15, 2005 8:07 am Post subject:
--------------------------------------------------------------------------------
Yep this is what tech support sent me
The following is the send mail script you requested:
Sendmail: /usr/lib/sendmail
$ mail prog: '/usr/lib/sendmail-i-t';
I tried both and still no good
<xmp>
<form name="form1" method="post" action=" <p>
<input name="recipient" type="hidden" value="marketing@selfhelp.net">
Simply fill in your name, e-mail address, and
areas of interest below and we'll do the rest.<br>
<br> <input type="text" name="email" value="" size="30"> <div class="SUTableContainer">
<div class="SUrow1Container">
<div class="COL11SU">
<div class="signHolder">* First Name:</div>
<div class="signHolder">* Last Name:</div>
<div class="signHolder">* Email:</div>
</div>
<div class="COL12SU">
<div class="signHolder">
<input class="txtBoxMan" name="FirstName"type="text">
</div>
<div class="signHolder">
<input class="txtBoxMan" name="LastName"type="text">
</div>
<div class="signHolder">
<input class="txtBoxMan" name="Email"type="text">
</div>
</div>
</div>
<div class="SUrow2Container">Area of interests: (Select all that
apply) </div>
<div class="SUrow3Container">
<div class="COL11SULong">
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Source">
Senior Source</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Licensed Home Care">
Licensed Home Care</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Housing">
Senior Housing</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Events"> Events</div>
</div>
<div class="COL12SULong">
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Community Programs">
Community Programs</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Nazi Victim Services">
Nazi Victim Services</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Donate/Volunteer">
Donate/Volunteer</div>
<div class="signHolder">
<input name="Interested in" type="checkbox" value="Senior Activity Centers">
Senior Activity Centers</div>
</div>
</div>
<div class="SUrow2Container">
<div class="signHolder">
<input type="checkbox">
HIV/AIDS Certified Home Care</div>
</div>
<div class="SUrow2Container">
<div class="btnHolder">
<input type="submit" class="submit-button"value="Submit" onClick="return validate();"><input type=hidden name="redirect" value="
</div>
</div>
<div class="SUrow3Container"><div class="lineHeightText">We take your privacy very seriously
and will never pass your details on to any third party. Every
email you receive from us will contain instructions on how to
unsubscribe. For more information please view our <a href="privacy.shtm" target="_top"><span class="linkAU">Privacy
Policy</span></a></div></div>
</div>
</form> </xmp>
Back to top
ATNO/TW
Super Moderator
Joined: 28 May 2003
Location: Pittsburgh PA
Status: Online
Posts: 10449
Posted: Tue Mar 15, 2005 6:23 am Post subject:
--------------------------------------------------------------------------------
At a quick glance it looks like your form is OK.
Have you verified your path to perl and your mail path are correct? The most common reason I know of for your problem is the mail path is wrong. Here's from Matt's own instructions:
Sign up Now! Time is running out.
Back to top
agrotzky
Born
Joined: 14 Mar 2005
Status: Online
Posts: 3
Posted: Tue Mar 15, 2005 8:07 am Post subject:
--------------------------------------------------------------------------------
Yep this is what tech support sent me
The following is the send mail script you requested:
Sendmail: /usr/lib/sendmail
$ mail prog: '/usr/lib/sendmail-i-t';
I tried both and still no good