如何在邮件字符串中包含所有标题

时间:2014-07-11 07:04:39

标签: php string forms header

我的反馈表格中有3个字段。这些字段也在php代码中提到。电子邮件发送正常,但有一个问题。我在$ name的邮件字符串中提到的只有一个字段被发送到电子邮件。如果我包含$ comments字段,那么它不起作用。请帮忙。 php代码如下:

<?php
 /*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "cmqaiser.ihrc@gmail.com";

/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$feedback_page = "contact.html";
$error_page = "error_message.html";
$thankyou_page = "thank_you.html";

/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$name = $_REQUEST['full_name'] ;
$email_address = $_REQUEST['email_address'] ;
$comments = $_REQUEST['comments'] ;

/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
    return true;
}
else {
    return false;
}
}

// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}

// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($comments) || empty($name)) {
header( "Location: $error_page" );
}

// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}

// If we passed all previous tests, send the email then redirect to the thank you page.
else {
mail( "$webmaster_email", "Feedback Form Results",
$name, "From: $email_address" );
header( "Location: $thankyou_page" );
}
?>

1 个答案:

答案 0 :(得分:0)

使用mail()时,如果文本包含在内,则应将变量包含在引号内,header应该首先出现,否则无意义。

header ( "Location: $thankyou_page" );

  mail ( $webmaster_email, 
         "Feedback Form Results: $name\n",
         $comments,
         "From: $email_address\n");