|
Answer
by: Stuart Pierce, Aplus.Net Knowledge Base Support
You
can set up a Formmail HTML page, so that users can choose
the recipient of the form results using a drop-down box. The HTML
page will collect the data from your web site visitor, and send it
to the selected recipient through the formmail.pl script.
Here
is the HTML code fragment:
The simple recipient HTML code:
<input type=hidden name="recipient" value="address1@yourdomain.com">
should be replaced with the following HTML code:
<select name="recipient">
<option value="sales@yourdomain.com">Choose this
option to contact our Sales Department</option>
<option value="support@yourdomain.com">Choose
this option to contact our Support Department</option>
</select>
Note:
Please replace sales@yourdomain.com and support@yourdomain.com with
your actual email accounts.
Related
links:
|