繁体   English   中英

具有Smtp身份验证的Web表单(答复)

[英]Web Form With Smtp Authentication (reply-to)

我的联系表来自TEST-如下面的代码所示,但是我需要它来自填写表单的人,以便在回复电子邮件时,它转到输入的地址,而不是TEST。

我是PHP的新手,我可能会在实施Reply-to方面寻求帮助吗? 我已经尝试过并且一直想念一些东西。

这是我的原始代码。 谢谢!

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

function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}

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

$contact_name = $_POST['contact_name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // required
$comments = $_POST['comments']; // not required

$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
  }
$string_exp = "/^[A-Za-z 0-9.'-]+$/";
  if(!preg_match($string_exp,$contact_name)) {
$error_message .= 'The Contact Name you entered does not appear to be valid.<br />';
  }
   if(!preg_match($string_exp,$telephone)) {
$error_message .= 'The Telephone # 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 .= "Contact Name: ".clean_string($contact_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";

ini_set('display_errors',1);
error_reporting(E_ALL); 

  require_once "Mail.php";

$from = "TEST<todd@xxxxxx.com>";
$to = "<anyone@xxxxxxxx.com>";
$subject = "Test message";
$body = "$email_message";

$host = "mail.xxxxxxxx.com";
$username = "todd@xxxxxxxx.com";
$password = "xxxxxxxxxx";

headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
  array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));

$mail = $smtp->send($to, $headers, $body);

if (PEAR::isError($mail)) {
  echo("<p>" . $mail->getMessage() . "</p>");
} else {
  echo("<p></p>");
}
?>


<!-- include your own success html here -->
message sent

<?php
}
?> 

尝试:

$from = $_POST['contact_name'];

或者,如果您希望他们的电子邮件出现:

$from = $_POST['email'];

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM