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 [email protected]. I'm supposed to use and If/else if code correct? I'm new to all this and would appreciate some help. Thanks! 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='[email protected]'; break; case 'UK': $to='[email protected]'; break; case 'AU': $to='[email protected]'; break; default : $to='[email protected]'; } ?> Scott. 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!!!! 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
Archived
This topic is now archived and is closed to further replies.