Q:
I am sure you are familiar with the BNBFORM.CGI script (version 4.0, dated
Jan 31, 2000), available at
http://www.bignosebird.com/carchive/bnbform.shtml.
Not being a programmer, I can't figure out what to modify in the CGI file,
so that everything else remains the same, except the recipients' email
addresses are *hard-coded* in the CGI file (as opposed to lying open [in
the feedback form] for email harvesters to pick them up).
Could you please provide me with step-by-step directions to achieve this?
Please let me know if I have not been clear or if you need additional
information.
Thanks,
~ JC ~
A:
You can see the line:
&decode_vars;
insert the following line after it:
@recipients = ('your@mail.com', 'other@mail.com');
This will overwrite the recipients coming from the web client form data.
Regards,
Peter
[ back to toc ]