I'v been doing some reading and got lost when I got here. I looked for @recipients and can't find it to change it if that's even what I have to do(it's not in my source code). Can someone please make sense of this for my dumb A$$.
My only guess is that it's in the code in /formmail.cgi file but I'm not sure if I should changed it and don't even know how if I want to experiment.
Please HELP I'm days into trying to get this to email to me!!!!
Naz
((((copied from
http://www.scriptarchive.com/readme/...tml#recipients))))
@recipients = &fill_recipients(@referers);
If you wish to only allow e-mail addresses at the domain names in @referers to receive form results, you probably do not need to change this variable. However, if you get any 'Error: Bad/No Recipient' messages when running FormMail, you may have to revisit @recipients and make sure you have correctly listed all domains or configured this variable.
@recipients is the most important variable you need to configure. It is an array of regular expressions defining all valid recipients that can be specified. In order for an e-mail to be sent to the recipient defined in a form, the recipient e-mail address must match one of the elements in the @recipients array.
SIMPLE SETUP:
For the most simple setup, place any domain name that you wish to send form results to in the @referers array. Warning: This allows those domains to also access your FormMail script and utilize it to process their own forms, but likely this is what you intended anyway. If so, you can leave:
@recipients = &fill_recipients(@referers);
_________________________________
Can someone draw me a picture
Naz