使用PHP向两个多个收件人发送电子邮件,但身体不同

时间:2013-03-23 09:42:33

标签: php html-email

我有一个联系表单,当用户提交所有值时会发送(电子邮件)给admin。但是现在我想要做的时候用户提交管理员会收到电子邮件,用户也会收到一封电子邮件,但身体不同。

这是我之前的代码:

<?php
if(isset($_POST['email'])) {

// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "admin@gmail.com";
$email_subject = "Lifemailer Sales Enquiry";
$email_to_user= "Name: ".clean_string($name)."\n";


function died($error) {
    // your error code can go here
    $URL = "error.html";
header("Location: $URL");
die();
}

// validation expected data exists
if(!isset($_POST['name']) ||
    !isset($_POST['contact']) ||
    !isset($_POST['email']) ||
    !isset($_POST['email_sub']) ||
    !isset($_POST['remarks'])) {
    died('We are sorry, but there appears to be a problem with the form your
     submitted.');      
}

$name = $_POST['name']; // not required
$contact = $_POST['contact']; // required
$email = $_POST['email']; // required
$email_sub = $_POST['email_sub']; // required
$remarks = $_POST['remarks']; // required


$error_message = "";
$string_exp = "^[a-z .'-]+$";
  if(!eregi($string_exp,$name)) {
$error_message .= 'The Name you entered does not appear to be valid.<br />';
 }
    $string_exp = "^[0-9 .-]+$";
  if(!eregi($string_exp,$contact)) {
$error_message .= 'The Contact Number you entered does not appear to be valid.
 <br     />';
  }
$email_exp = "^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$";
  if(!eregi($email_exp,$email)) {
$error_message .= 'The Email Address you entered does not appear to be valid.
  <br    />';
  }

  if(strlen($error_message) > 0) {
died($error_message);
  }
$email_message = "Form details below.\n\n";

function clean_string($string) {
  $bad = array("content-type","bcc:","to:","cc:","href");
  return str_replace($bad,"",$string);
}

$email_message .= "Name: ".clean_string($name)."\n";
$email_message .= "Contact Number: ".clean_string($contact)."\n";
$email_message .= "Email: ".clean_string($email)."\n";
$email_message .= "Email Subject : ".clean_string($email_sub)."\n";
$email_message .= "Remarks/Enquiry : ".clean_string($remarks)."\n";



    // create email headers
    $headers = 'From: '.$email."\r\n".
    'Reply-To: '.$email."\r\n" .
    'X-Mailer: PHP/' . phpversion();
     @mail($email_to, $email_subject, $email_message, $headers);  
     $URL = "thank-you.html";
     header("Location: $URL");



     ?>

    Thank you for contacting us. We will be in touch with you very soon.

     <?
      }
     ?>

2 个答案:

答案 0 :(得分:1)

以同样的方式,您可以在发送给管理员后发送第二封电子邮件,其中包含不同的主题,电子邮件,电子邮件。

答案 1 :(得分:0)

  just concatenate

  $email_to = ' admin@gmail.com ' . ',' ;

  $email_to  . = ' admin@gmail.com ' ;