Suche auf lima-city
-
in: PHP und Flash Formular
geschrieben von saldandrea
Hallo
Ich habe ein Problem mit Kontakt Formular (die ist im AS3 geschrieben und funktioniert) das Problem liegt sicher im PHP script. auf andere Webserver funktioniert aber bei lima-city geht nicht.
kann mich jemand ein Tipp geben ?
Gruss
Sal D'Andrea
<?php
// Pull contact details
$sendTo = "MEINE PRIVATE EMAIL";
$subject = "You ve got WEB a new message";
// Do not edit the following lines
$name = trim($_POST["name"]);
$email = trim($_POST["email"]);
$message = trim($_POST["message"]);
$headers = "From: " . $name . " <" . $email . ">\r\n";
if (mail($sendTo, $subject, $message, $headers)) {
echo "result=sent";
} else {
echo "result=failed";
}
?>