UP2U

SKONTAKTUJ SIĘ Z NAMI

NAPISZ DO NAS

Sprawdź jak nam idzie na naszych social mediach

				
					
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;

				
			
Przewijanie do góry