以电子邮件形式返回多行的请求

时间:2014-05-22 01:16:24

标签: php email

嗨,我有这个PHP电子邮件,我正在使用;我想让电子邮件输出显示多个喜欢的请求数据,如

name
company name
phone number
email
address
comments

而不是我目前如何收到电子邮件

$message = 'Name: '.$name.', Company: '.$company.', Phone: '.$phone.', Mailing Address: '.$mailing_address.'From: '.$email_address.', Message: '.$comments;

我是一个php noob任何帮助都会很棒!

<?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 = "you@hotmail.com"; /* ENTER EMAIL ADDRESS TO THE LEFT INSIDE THE QUOTES */

/*
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 = "index.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['name'] ;
$company = $_REQUEST['company'] ;
$phone = $_REQUEST['phone'] ;
$email_address = $_REQUEST['email_address'] ;
$mailing_address = $_REQUEST['mailing_address'];
$comments = $_REQUEST['comments'] ;
$message = 'Name: '.$name.', Company: '.$company.', Phone: '.$phone.', Mailing Address: '.$mailing_address.'From: '.$email_address.', Message: '.$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($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", "Maxbulb Inquiry from: $name", $message);
header( "Location: $thankyou_page" );
}
?>

2 个答案:

答案 0 :(得分:0)

尝试将其更改为:

 $message = 'Name: '.$name.'
    \n Company: '.$company.'
    \n Phone: '.$phone.'
    \n Mailing Address: '.$mailing_address.'
    \n From: '.$email_address.'
    \n Message: '.$comments;

答案 1 :(得分:0)

我认为@kimbarcelona正在考虑网络显示,而不是电子邮件。 我使用它,它适用于我:

$message = "There has been an order for Learning Fundamentals on $curDateTime\n\n";
        $message .= "$name\n";
        $message .= "$company\n";

        $message .= "$street1\n";
        $message .= "$street2\n";
        $message .= "$city, $state $province $zip\n";
        $message .= "$country\n";

我喜欢PHP中的。=符号,因为它使事情更容易阅读。如果您不想更改代码,可以在每个新标题之前添加换行符,如下所示:

$message = 'Name: '.$name.',\nCompany: '.$company.',\nPhone: '.$phone.',\nMailing Address: '.$mailing_address.'From: '.$email_address.',\nMessage: '.$comments;