I currently use the 'Formmail' script to send the original form results to my mail address, however I don't fancy the prospect of individually sending back a personal email to everyine who has filled in the form.
Any pointers would be most welcome.
cordless kettle.
open (SENDMAIL, "¦ /usr/sbin/sendmail -t");
print SENDMAIL "Subject: Autoresponse\n";
print SENDMAIL "To: $Recipient\n";
print SENDMAIL "From: $ENV{SERVER_ADMIN}\n\n";
print SENDMAIL "Thank you for filling out my form\n\n";
close (SENDMAIL);