联系表格 - 通过电子邮件发送给提交者?

时间:2012-03-23 14:26:01

标签: php

我希望我的php formtoemail能够将表单的副本CC提交给提交者 - 我已经尝试过使用各种代码但是无法让它工作!

这是我的主要优先事项 - 让它发挥作用。

理想我想添加一个复选框,上面写着“勾选此框以向自己发送副本” - 但如果这太复杂,那么只需一个自动CC就可以了。

我发布了以下PHP代码:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L] <?php

$my_email = "info@info.com";

/*

Enter the continue link to offer the user after the form is sent. If you do not change this, your visitor will be given a continue link to your homepage.

If you do change it, remove the "/" symbol below and replace with the name of the page to link to, eg: "mypage.htm" or "http://www.elsewhere.com/page.htm"

*/

$continue = "/";

/*

Step 3:

Save this file (FormToEmail.php) and upload it together with your webpage containing the form to your webspace. IMPORTANT - The file name is case sensitive! You must save it exactly as it is named above! Do not put this script in your cgi-bin directory (folder) it may not work from there.

THAT'S IT, FINISHED!

You do not need to make any changes below this line.

*/

$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 address']) && !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, please press <i>Back</i> and try again";}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, please press <i>Back</i> and try again";}else{if(substr_count($exploded_email[1],".") == 0){$errors[] = "Email address is invalid, please press <i>Back</i> and try again";}else{$exploded_domain = explode(".",$exploded_email[1]);if(in_array("",$exploded_domain)){$errors[] = "Email address is invalid, please press <i>Back</i> and try again";}else{foreach($exploded_domain as $value){if(strlen($value) > 63 || !preg_match('/^[a-z0-9-]+$/i',$value)){$errors[] = "Email address is invalid, please press <i>Back</i> and try again"; 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 = "Album builder";

$headers = "From: " . $_REQUEST['brides-name'];

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

?>
Reply With Quote

4 个答案:

答案 0 :(得分:1)

  1. 在页面上放置一个复选框 - “您想收到此邮件的副本吗?”
  2. 如果用户检查,则显示用户电子邮件地址的其他文本框
  3. 在邮件中添加其他标题信息 - 如下所述:PHP - Mail Form Content - how to add CC field?

答案 1 :(得分:1)

您需要将cc地址添加到标题中:

$headers = "From: " . $_REQUEST['brides-name'] . "\r\n";
$headers .= 'Cc: ' . $_REQUEST['email'] . "\r\n";

请参阅php手册中的Example #4

答案 2 :(得分:0)

只需替换

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

main($my_email,$subject,$message,$headers);
main($_REQUEST['senders-email'],$subject,$message,$headers);

答案 3 :(得分:0)

你需要添加这样的东西。

 $to = array($myMail,$userMail);
    $to = 'To', implode(", ", $to);
    $headers.=$to;
    $headers .= 'Cc: ' . $userMail;
    mail($my_email,$subject,$message,$headers);