Take a look at http://sarmodel.collingwood.me.uk, go to the "Contact Me" page. Here is the backend script that drives it - my_email_address is where you add your address. don't forget to escape the @ sign (i.e. me\@somedomain.com). You need to have sendmail running: #!/usr/bin/perl -w use strict; use CGI qw(:standard); my $address = param("address"); my $message = param("message"); print header(); print ""; `mail -s "Mail from SAR Modelling" my_email_address<Message sent"; print "

Thank you for your message. To go back into the website, please use the navigation bar on the left

"; print ""; > Sean Alcorn - PIC Stuff said: > > OK. Have since checked out your form and can not find an email address. > > > > Tres Chic! > > > > So how much is the commercial version of your cgi and what will it run > > on? > > Since it's includes some freely distributable stuff posted on the web many > years ago, I'm not going to claim any title to it, so I guess the answer > is, uhh, free I guess, and it runs on anything with sendmail and perl. So > if you have a website on some typical virtual hosting service that lets > you have a cgi-bin directory, it should work. It's a very simple program. > Actually I'm working on a nicer version that you can use your normal > webpage template with, so the result and error pages are in the same > format as the rest of your site. It's that kind of stuff that makes > programs big, the eye-candy! > > Email me privately if you want me to send the current version to you. > > Cheers, Bob > > -- > http://www.piclist.com hint: PICList Posts must start with ONE topic: > [PIC]:,[SX]:,[AVR]: ->uP ONLY! [EE]:,[OT]: ->Other [BUY]:,[AD]: ->Ads > -- http://www.piclist.com hint: PICList Posts must start with ONE topic: [PIC]:,[SX]:,[AVR]: ->uP ONLY! [EE]:,[OT]: ->Other [BUY]:,[AD]: ->Ads