-1

我非常坚持这一点,过去当我制作 php 邮件表单时它已经工作了,但我的大脑只是没有处理这个问题。任何想法都会非常有帮助。

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


$email_to = "paulsizer12@gmail.com";
$email_subject = "eKoWeld Feedback";

$email_message = "Form details below.\n\n";

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

$company_name = $_POST['company_name']; 
$contact_name = $_POST['contact_name']; 
$industry = $_POST['industry'];
$do = $_POST['do']; 
$material = $_POST['material']; 
$TIG_MIG = $_POST['TIG_MIG'];
$Instructions = $_POST['Instructions'];
$easy = $_POST['easy'];
$Before = $_POST['Before']; 
$After = $_POST['After'];
$Savings = $_POST['Savings'];
$recommend = $_POST['recommend'];
$another = $_POST['another'];
$testimonial = $_POST['testimonial']; 




?>
Thank you for leaving feedback.
<?php
}
?>
4

1 回答 1

0

PHP 邮件

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>

您忘记添加邮件功能

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


$email_to = "paulsizer12@gmail.com";
$email_subject = "eKoWeld Feedback";

$email_message = "Form details below.\n\n";

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

$company_name = $_POST['company_name']; 
$contact_name = $_POST['contact_name']; 
$industry = $_POST['industry'];
$do = $_POST['do']; 
$material = $_POST['material']; 
$TIG_MIG = $_POST['TIG_MIG'];
$Instructions = $_POST['Instructions'];
$easy = $_POST['easy'];
$Before = $_POST['Before']; 
$After = $_POST['After'];
$Savings = $_POST['Savings'];
$recommend = $_POST['recommend'];
$another = $_POST['another'];
$testimonial = $_POST['testimonial']; 

 mail($to, $subject, $message, $headers); // add this line with your variables 


?>
于 2013-09-27T09:19:44.393 回答