2014-11-07 9 views
0

나는 더 이상 생각할 수 없다. 두 개의 라디오 버튼이 있습니다. 클릭 한 버튼에 따라 두 개의 이메일 주소 중 하나에 양식을 보내려면 어떻게해야합니까? 나는 PHP에서 총 바보 야, 고마워.라디오 버튼 입력에 따라 다른 수신자에게 양식

HTML

<div class="col-md-8 contact-top"> 
       <h3>Book here Online!</h3> 
       <form method="post" action="FormtoEmail/FormtoEmail.php"> 
       <form role="form"> 
<div class="form-group"> 
    <label for="name">Name:</label> 
    <input type="name" class="form-control" id="name" placeholder="Name"> 
    </div> <div class="form-group"> 
    <label for="email">Email address:</label> 
    <input type="email" class="form-control" id="email" placeholder="Email"> 
    </div> 
    <div class="form-group"> 
    <label for="subject">Subject:</label> 
    <input type="subject" class="form-control" id="subject" placeholder="Subject"> 
    </div> 
    <div class="radio"> 
    <label><input type="radio" name="recipients" value="recipient_1">Booking Accommodation</label> 
</div> 
<div class="radio"> 
    <label><input type="radio" name="recipients" value="recipient_2" >Booking Conference</label> 
</div> 
    <div class="form-group"> 
    <textarea rows="11" name="message" id="message" class="form-control" placeholder="Details"></textarea> 
    </div> 
    <button type="submit" class="btn btn-default">Submit</button> 
</form> 
      </div> 

내 PHP 당신은 같은 name하지만 다른 이메일 아이디

<div class="radio"> 
    <label><input type="radio" name="recipients" value="[email protected]"> 
     Booking Accommodation 
    </label> 
</div> 
<div class="radio"> 
    <label><input type="radio" name="recipients" value="[email protected]" > 
     Booking Conference 
    </label> 
</div> 

당신이 선택할 수있는 방법으로 값을 가진 radio 버튼 그룹을 사용할 필요가

<?php 

$my_email = "[email protected]"; 


$continue = "/"; 



$errors = array(); 

// Remove $_COOKIE elements from $_REQUEST. 

if(count($_COOKIE)){foreach(array_keys($_COOKIE) as $value){unset($_REQUEST[$value]);}} 

// Check all fields for an email header. 

function recursive_array_check_header($element_value) 
{ 

global $set; 

if(!is_array($element_value)){if(preg_match("/(%0A|%0D|\n+|\r+)(content-type:|to:|cc:|bcc:)/i",$element_value)){$set = 1;}} 
else 
{ 

foreach($element_value as $value){if($set){break;} recursive_array_check_header($value);} 

} 

} 

recursive_array_check_header($_REQUEST); 

if($set){$errors[] = "You cannot send an email header";} 

unset($set); 

// Validate email field. 

if(isset($_REQUEST['email']) && !empty($_REQUEST['email'])) 
{ 

if(preg_match("/(%0A|%0D|\n+|\r+|:)/i",$_REQUEST['email'])){$errors[] = "Email address may not contain a new line or a colon";} 

$_REQUEST['email'] = trim($_REQUEST['email']); 

if(substr_count($_REQUEST['email'],"@") != 1 || stristr($_REQUEST['email']," ")){$errors[] = "Email address is invalid";}else{$exploded_email = explode("@",$_REQUEST['email']);if(empty($exploded_email[0]) || strlen($exploded_email[0]) > 64 || empty($exploded_email[1])){$errors[] = "Email address is invalid";}else{if(substr_count($exploded_email[1],".") == 0){$errors[] = "Email address is invalid";}else{$exploded_domain = explode(".",$exploded_email[1]);if(in_array("",$exploded_domain)){$errors[] = "Email address is invalid";}else{foreach($exploded_domain as $value){if(strlen($value) > 63 || !preg_match('/^[a-z0-9-]+$/i',$value)){$errors[] = "Email address is invalid"; break;}}}}}} 

} 

// Check referrer is from same site. 

if(!(isset($_SERVER['HTTP_REFERER']) && !empty($_SERVER['HTTP_REFERER']) && stristr($_SERVER['HTTP_REFERER'],$_SERVER['HTTP_HOST']))){$errors[] = "You must enable referrer logging to use the form";} 

// Check for a blank form. 

function recursive_array_check_blank($element_value) 
{ 

global $set; 

if(!is_array($element_value)){if(!empty($element_value)){$set = 1;}} 
else 
{ 

foreach($element_value as $value){if($set){break;} recursive_array_check_blank($value);} 

} 

} 

recursive_array_check_blank($_REQUEST); 

if(!$set){$errors[] = "You cannot send a blank form";} 

unset($set); 

// Display any errors and exit if errors exist. 

if(count($errors)){foreach($errors as $value){print "$value<br>";} exit;} 

if(!defined("PHP_EOL")){define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "\r\n" : "\n");} 

// Build message. 

function build_message($request_input){if(!isset($message_output)){$message_output ="";}if(!is_array($request_input)){$message_output = $request_input;}else{foreach($request_input as $key => $value){if(!empty($value)){if(!is_numeric($key)){$message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;}else{$message_output .= build_message($value).", ";}}}}return rtrim($message_output,", ");} 

$message = build_message($_REQUEST); 

$message = $message . PHP_EOL.PHP_EOL."-- ".PHP_EOL.""; 

$message = stripslashes($message); 

$subject = "Out of Africa Town Lodge Contact Form"; 

$headers = "From: " . $_POST['email']; 
$recipients = array(

'recipient_1' => '[email protected]', 
'recipient_2' => '[email protected]' 

); 

$my_email = $recipients[$_REQUEST['recipient']]; 

mail($my_email,$subject,$message,$headers); 

?> 
+1

코드를 표시하고 지금까지 시도한 것을 포함하십시오. – Bowdzone

+0

'$ my_email = $ recipients [$ _ REQUEST ['받는 사람 ']];하지 말고'$ my_email = $ recipients [$ _ REQUEST [ 받는 사람 ']];'. 차이점은'$ _REQUEST [ '받는 사람']' –

답변

0

두 라디오 중 하나에서

//use post to get the email id 
$to = $_POST['recipients']; 

FormtoEmail.php에서 PHPMailer를 사용하여 메일, 가장 큰 라이브러리를 보낼 것 당신의 인생

0

는이 코드를 사용 할 수 있습니다 쉽게 :

<?php 
if(isset($_POST['recipients']) && $_POST['recipients'] == 'recipient_1') { 
    // send to recipient_1 
} else { 
    // send to recipient_2 
} 
?> 
+0

내 PHP를 포함 시켰습니다. –

+0

당신의 HTML을 보시오.'$ my_email = $ recipients [$ _REQUEST [ 'recipient']];''$ my_email = $ recipients [$ _REQUEST [ 'recipient']];'. 차이점은'$ _REQUEST [ '받는 사람']' –

0
$my_email = $recipients[$_REQUEST['recipient']]; 

$ _REQUEST 변수에 오타가 있습니다. $ recipients [$ _REQUEST [ 'recipi ents ']];

희망은 이제 작동합니다. 그것은 어쨌든 더 쉽게 할 수 있습니다.

관련 문제