View Single Post
Old 19-04-2008, 00:24   #5 (permalink)
Shiro
shiro
 
Shiro's Avatar
 
Join Date: Aug 2007
Location: Yokohama, Japan
Posts: 2,636
You can use this:

Code:
<?php switch($_POST['Recipient'] { case "test1": $email_to = "test1@live.com"; break; case "test2: $email_to = "test2@hotmail.com; break: case "test3": $email_to = "test3@yahoo.com"; break; } ?>
  Reply With Quote