Need Help Please with FormMail Script
Hi,
How do I use the FormMail script so the form is sent to my email address as well as sent to an autoresponder that sends a message right back to the sender.
I have specified multiple recipients with FormMail using the following tag:
as well as made sure that the text input field that captures the visitors' email addresses is named "Email" so that it appears in the "From" field when sent out as an email.
Any help would be greatly appreciated.
Thanks
Theodore
Suzanne posted this at 06:33 — 15th February 2001.
She has: 5,507 posts
Joined: Feb 2000
http://www.worldwidemart.com/scripts/readme/formmail.shtml
But it doesn't seem to deal with this issue. I remember somewhere reading that you could have multiple values for recipient, but I can't remember if they were separated by a comma or a semi-colon.
You're on the right track, of course.
You could also have the auto-responder send you a copy.
Suzanne
Brooke posted this at 15:33 — 15th February 2001.
She has: 681 posts
Joined: Feb 1999
Go to:
http://www.worldwidemart.com/scripts/
I didn't see anything on auto responders right off, but you might be able to email them to get an answer!
Brooke
nike_guy_man posted this at 20:50 — 15th February 2001.
They have: 840 posts
Joined: Sep 2000
Well... BigNoseBird has a good one with autoresponders...
basically it executes
[code]
open (MAIL, /path/to/mail-v);
print MAIL "To: $formdata('sender')";
print MAIL "From: $myemail";
print MAIL "Subject: Form";
print MAIL "You filled this out";
close(MAIL)
open (MAIL, /path/to/mail-v);
print MAIL "To: $myemail";
print MAIL "From: formdata('sender'";
print MAIL "Subject: Form";
print MAIL "They filled this out";
close(MAIL)
NSS posted this at 11:39 — 17th February 2001.
They have: 488 posts
Joined: Feb 2000
HI,
If you want to use Formmail with autoresponder, please check the below link. You can modify your formmail script to include the autoresponder
http://www.datatrendsoftware.com/automail_lite_text.html
Click the below link to read the script text, readme file, etc, or download the complete script.
http://www.datatrendsoftware.com/automail_lite.html
Regards,
NSS
[Edited by NSS on Feb. 17, 2001 at 06:59 AM]
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.