2016-11-30 2 views
-4

so mache ich eine Website für einen Kunden und er möchte, dass ich eine Kontakt uns Seite, jetzt versuche ich es in der E-Mail-Nachricht sagen lassen: "Sie haben wurde von $ name $ name2 kontaktiert und seine Email ist $ from. \ n Die Nachricht, die er sagen wollte, war im Betreff von $ message und die Nachricht ist $ message2 "help?PHP-Index Probleme, senden keine E-Mails

meine HTML-Code:

<form action="contactus.php" method="post"> 
<div class="form-group"> 
    <label for="Subject">Subject*</label> 
    <input name="subject" class="form-control" id="subject1" placeholder="Subject"> 
</div> 
<label for="sabject">Why do you want to contact us?</label> 
    <br> 
    <select name="select"> 

     <option value="General Inquiry">General Inquiry</option> 
     <option value="hampion Guide Request">Champion Guide Request</option> 
     <option value="League of Legends Show(s) Request">League of Legends Show(s) Request</option> 
     <option value="Podcast - League of Legends">Podcast - League of Legends</option> 
    </select> 
    <label for="fname">First Name*</label> 
    <input type="text" name="firstname" class="form-control" id="namef" placeholder="First Name"> 

    <label for="lname">Last Name</label> 
    <input type="text" name="lastname" class="form-control" id="namel" placeholder="Last Name"> 
    <label for="email_adress">Email Adress*</label> 
    <input type="email" name="email_adress" class="form-control" id="email_adress" placeholder="Email Adress"> 
    <label for="message">Message*</label> 
    <input name="message2" class="form-control" id="message" placeholder="message"> 
    <input style="margin-top: 50px;" value="Send Form" name="submit" type="submit">Submit</button> 
</form> 

php:

<html> 
    <head> 
     <title> PHP script</title> 
    </head> 
    <body> 
     <?php 
     $to ="[email protected]"; 
     $from = isset($_POST['email_adress']) ? $_POST['email_adress'] : ''; 
     $email_subject = isset($_POST['subject']) ? $_POST['subject'] : ''; 
     $message = isset($_POST['select']) ? $_POST['select'] : ''; 
     $message2 = isset($_POST['message2']) ? $_POST['message2'] : ''; 
     $name = isset($_POST['firstname']) ? $_POST['firstname'] : ''; 
     if (empty($name)||empty($from)) 
     { 
      echo "Name and email are mandatory!"; 
      exit; 
     } 
     elseif (empty($email_subject)||empty($message)) { 
      echo "Your email or subject are blank, please write something in them"; 
      exit; 
     } 
     elseif (empty($name)||empty($message2)) { 
      echo "Your name or message are empty"; 
     exit; 
     } 
     $name2 = isset($_POST['lastname']) ? $_POST['lastname'] : ''; 
     $email_from = "[email protected]"; 
     $body = $_POST['You have been contacted by $name $name2 and his email is $from. \n The message he wanted to say was in the subject of $message and the message is $message2']; 
     $headers = "From: $body"; 
     mail($to , $email_subject , $body ,$headers); 
     ?> 
     </body> 
     </html> 

Mein Problem ist, dass es nicht identifizierten Variablen Index oder so ähnlich

sagt
+1

"Es gibt ein Problem mit meinem PHP" ... wo ist das PHP ...? –

+0

Können Sie uns Ihr PHP zur Verfügung stellen? Es würde helfen, zu sehen, wie Sie die Formularwerte erhalten –

+0

ja, es sagte, dass ich nicht richtig eingerückt habe, so musste ich sry zurückgesetzt – guy

Antwort

1

Der undefinierten Index

von $body = $_POST['You have be..] kommt

Probieren Sie dies für $ body:

$body = 'You have been contacted by ' . $name . ' ' . $name2 . ', and his email is ' . $from . 'The message he wanted to say was in the subject of' . $message . ' and the message is ' . $message2;