Hollst Du dir auch wirklich die Variablen aus dem Formular?
SQL-Code:
<?
$name = $_REQUEST['
name'];
$mail = $_REQUEST['
mail'];
$
text = $_REQUEST['
text'];
$form = "
Content-Type: text/html";
mail('
mail@adresse.de', '
betreff', "
Von: $name
Von: $mail;
Text:
$text", $form);
?>