All I have to work with is your contact.htm page on your site. Within the HTML code on that page you'll see a form, and within that form you have this...
Code:
<input type="hidden" name="redirect" value="http://twopooches.com/thanks.htm">
That is a hidden input value that no one sees, but is passed to the script when submitted. All you have to do is replace that line with this...
Code:
<SELECT name="redirect">
<OPTION>http://www.option-a.com</OPTION>
<OPTION>http://www.option-b.com</OPTION>
<OPTION>http://www.option-c.com</OPTION>
<OPTION>http://www.option-d.com</OPTION>
<OPTION>http://www.option-e.com</OPTION>
</SELECT>
You do not need to edit the actual FormMail.pl script, but only the HTML page the form is on. All your doing is removing the hidden field, and making it visable as options/selection box, giving the .pl script more options to consider when the form data is submitted.
All you have to do is change the
"www.option-a .com" and so on in the above example to the URLs you would like available for the user to choose from.
However, if you are using some software to generate your HTML pages and are not comfortable with hard code, I can't be of much help, and would't recommend messing around with it if you are not comfortable. Yet, it is a fairly simple and quick task with only a notepad.
Jim