gesendet automatische Antwort-E-Mail-Formular in php

dies ist mein php-code :

<?php
$to = '[email protected]';
$subject = 'New EMail From Your web site:MakeMoneyCorner.com';
$name = $_POST['name'];
$email = $_POST['email'];
$message = <<<EMAIL

from $name
his email is:$email
EMAIL;

$header = '$email';

if($_POST){
   mail($to, $subject, $message, $header, $feedback)
   $feedback = 'your information has been successfully Send it';

}

if ($mail->send()){ 
 $autoemail = new PHPMailer(); 
 $autoemail->From = "[email protected]"; 
 $autoemail->FromName = "makingmoneycorner.com"; 
 $autoemail->AddAddress($mail->From, $mail->FromName); 
 $autoemail->Subject = "This Is Your Book About Making Money"; 
 $autoemail->Body = "you can download here :";
 $autoemail->Send(); 
 }  

 ?>

** //das Formular funktioniert Super, kann ich recieve E-Mails, die Besucher zu versenden, aber die Antworten nicht funktioniert
warum ?

img problem :http://www.gulfup.com/?e4Nb5X

  • Fehlt ; in Zeile 17?
Schreibe einen Kommentar