karlo pr Posted February 5, 2008 Share Posted February 5, 2008 Hi All, I'm trying to set up a mail function to send the submitted information to specific e-mail addresses dependent upon which country they select. For example, if the user selects 'United States' from a drop down, I want to e-mail the submission to US@example.com. I'm supposed to use and If/else if code correct? I'm new to all this and would appreciate some help. Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/89461-mail-selecting-different-recipient-dependent-on-for-field/ Share on other sites More sharing options...
ratcateme Posted February 5, 2008 Share Posted February 5, 2008 you could use a switch statement e.g. <?php $country=$_POST['country']; switch($country){ case 'US': $to='us@exmaple.com'; break; case 'UK': $to='uk@exmaple.com'; break; case 'AU': $to='au@exmaple.com'; break; default : $to='world@example.com'; } ?> Scott. Quote Link to comment https://forums.phpfreaks.com/topic/89461-mail-selecting-different-recipient-dependent-on-for-field/#findComment-458172 Share on other sites More sharing options...
karlo pr Posted February 5, 2008 Author Share Posted February 5, 2008 Thank you so much!!!! Quote Link to comment https://forums.phpfreaks.com/topic/89461-mail-selecting-different-recipient-dependent-on-for-field/#findComment-459265 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.