How to send form to assigned emails depending on chosen opti
Posted: Wed Jan 03, 2007 3:37 am
feyd | Please use
feyd | Please use[/syntax]
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Lets say I have 5 different options in my combo box (5 different languages)
English
German
Polish
Italian
Russian
when one choses English, I want the email to be sent to english@english.com
when one choses German, I want the email to be sent to german@german.com
etc
different otion chosen, different email address that the form is sent to. How to do that?
[syntax="html"]<td width=\"60%\"><select size=\"1\" name=\"language\">
<option>English</option>
<option>German</option>
<option>Polish</option>
<option>Italian</option>
<option>Russian</option>
<option selected>Choose...</option>
</select></td>feyd | Please use[/syntax]
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]