Jump to content

Mail: selecting different recipient dependent on for field?


karlo pr

Recommended Posts

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!

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.