SKONTAKTUJ SIĘ Z NAMI
- Ptaszek Szymon
- +48 606 150 505
- kontakt@detailing-warszawa.pl
- Janczak Aleks
- +48 571 244 212
- ul. Komitet obrony robotników 39
if ($_SERVER["REQUEST_METHOD"] !== "POST") {
header("Location: /");
exit;
}
$imie = htmlspecialchars(trim($_POST["imie"] ?? ""));
$email = filter_var(trim($_POST["email"] ?? ""), FILTER_SANITIZE_EMAIL);
$telefon = htmlspecialchars(trim($_POST["telefon"] ?? ""));
$wiadomosc = htmlspecialchars(trim($_POST["wiadomosc"] ?? ""));
if (empty($imie) || empty($email) || empty($wiadomosc)) {
die("Uzupełnij wymagane pola.");
}
$to = "kontakt@detailing-warszawa.pl";
$subject = "Nowa wiadomość ze strony";
$body =
"Imię i nazwisko: $imie\n" .
"E-mail: $email\n" .
"Telefon: $telefon\n\n" .
"Wiadomość:\n$wiadomosc";
$headers = "From: kontakt@detailing-warszawa.pl\r\n";
$headers .= "Reply-To: $email\r\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
mail($to, $subject, $body, $headers);
header("Location: /dziekujemy");
exit;