Kopieren eines Formulars

PHP:
   +<?php
/***************************************************\
 * PHP 4.1.0+ version of email script. For more
 * information on the mail() function for PHP, see
 * http://www.php.net/manual/en/function.mail.php
\***************************************************/


// First, set up some variables to serve you in
// getting an email.  This includes the email this is
// sent to (yours) and what the subject of this email
// should be.  It's a good idea to choose your own
// subject instead of allowing the user to.  This will
// help prevent spam filters from snatching this email
// out from under your nose when something unusual is put.

$sendTo = "ddd@hotmail.com";
$subject = "Bestellung";

// variables are sent to this PHP page through
// the POST method.  $_POST is a global associative array
// of variables passed through this method.  From that, we
// can get the values sent to this page from Flash and
// assign them to appropriate variables which can be used
// in the PHP mail() function.


// header information not including sendTo and Subject
// these all go in one variable.  First, include From:
$headers = "From: " . $_POST["name"] ." <" . $_POST["email"] .">\r\n";
// next include a replyto
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
// often email servers won't allow emails to be sent to
// domains other than their own.  The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST["email"];

// now we can add the content of the message to a body variable
$message = $_POST["message"];


// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers);

?>

Ich komme echt nicht weiter, das ist der PHP Coe meiner alten Datei, wie schaffe ich das für den neuen anzupassen...?
 
Erstmal solltest du alle Daten validieren!! Das ist eine Sicherheitslücke!

Dein neues Formular hat gesagt.:
Füllen Sie unverbindlich das untenstehende Formular aus und Sie erhalten per Email ein individuelles Angebot gemäß Ihren Angaben.

Naja, du solltest irgendwie mit PHP ein Angebot suchen, dass am Besten auf die Angaben des Benutzers zutrifft. Hast du deine Angebote in einer MySQL-Datenbank, oder wie?
 
Nein, kein MySQL, davon halte ich mich weit fern, es ist nur als Email zur Information der Kunden für die Dienstleisterin. Ich will nur ein Formular als Mail bekommen. Soll das Orange raus? Sicherheitslücke? Wieso?
 
Meinst du so?

PHP:
   +<?php


$sendTo = "dddd@hotmail.com";
$subject = "Online Offerte";


$headers = "From: " . $_POST["name"] ." <" . $_POST["email"] .">\r\n";

$headers .= "Reply-To: " . $_POST["email"] . "\r\n";

$headers .= "Return-path: " . $_POST["email"];

$message = $_POST["message"];


mail($sendTo, $subject, $message, $headers);

?>
 
Nein, das sind nur Kommentare!!
Du sollst nicht einfach $_POST['...'] verwenden, da jemand ein Skript/Virus reinschreiben kann und dann eine falsche Email-Adresse angibt.
Ich poste gleich mal ein Code.
 
(Zur Übersichtlichkeit ein Doppelpost)
PHP:
<?php
foreach ($POST as $input)
{
  $input = htmlentities($input);
}

$ln = "\r\n"
$hl = "-----------------------------------------------------------------------";

$message = "Sehr geehrter ".$_POST['anrede']." ".$_POST['name'].",".$ln.$ln;

$message .= "bei Ihrer Online-Offerte-Buchhaltung haben Sie folgende Angaben gemacht:".$ln.$hl;

$message .= "Rechtsform: ".$_POST['rechtsform'];

// ...

$message .= $hl;
$message .= "Mit freundlichen Grüßen".$ln."Mister X";



?>

Wobei $ln ein Zeilenumbruch bedeutet und $hl eine horinzontale Linie darstellt.

Du musst die Sende-Angaben im HTML anpassen, also name, value!
 
Und wo steht nachher der "sehr geehrte Herr"? Wäre das Ding so einsetzbar für das Formular was du gemacht hast?
 
Zuletzt bearbeitet:
Die erste erstellte Datei, also das Formular, ist das ein PHP oder HTM?

Du musst die Sende-Angaben im HTML anpassen, also name, value! und wo finde ich das genau? Ich bin echt ein Seppel in dieser Sache...
 
Zurück