回复发件人上的电子邮件地址


replying to email address on the from

这是过程.php。我想从表格上的电子邮件地址接收电子邮件,以便我可以回复他们

<?php
$where_form_is="http://".$_SERVER['SERVER_NAME'].strrev(strstr(strrev($_SERVER['PHP_SELF']),"/"));
 // To send HTML mail, the Content-type header must be set
    $headers = "MIME-Version: 1.0'n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1'n";
    $headers .= "From: " .  $_POST['field_9'] . "'n"; 
    $headers .= "Reply-To: ". $_POST['field_9'] . "'n";
mail("harshad@madiganpratt.com","Reservaion Enquiry","Form data:

Preferred Arrival Date : " . $_POST['field_1'] . " 
Preferred Departure Date: " . $_POST['field_2'] . " 
Room Category: " . $_POST['field_3'] . " 
Adults: " . $_POST['field_4'] . " 
Children: " . $_POST['field_5'] . " 
Please contact me by: " . $_POST['field_6'] . " 
First Name: " . $_POST['field_7'] . " 
Last Name: " . $_POST['field_8'] . " 
Email: " . $_POST['field_9'] . " 
Phone: " . $_POST['field_10'] . " 
");
include("confirm.html");
?>

......

您需要

设置标头:

            // To send HTML mail, the Content-type header must be set
        $headers = "MIME-Version: 1.0'n";
        $headers .= "Content-Type: text/html; charset=ISO-8859-1'n";
        $headers .= "From: " .  $from . "'n"; 
        $headers .= "Reply-To: ". $from . "'n";
        $headers .= "CC: email@eami.com'n"; 
        // Mail it
        mail($to, $subject, $message, $headers);
相关文章: