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 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!

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.