Kod:
<?php
$wiadomosc =
"Imie i nazwisko : ".$_POST['nick']."
Adres e- mail : ".$_POST['mail']."
Temat : ".$_POST['type']."
Tresc wiadomosci : ".$_POST['tresc']."
".$_POST['zgoda']." ";
$tematyka = "Wiadomosc z formularza kontaktowego";
$header .= "\r\n";
$header .= "\r\nContent-Type: text/plain; charset=utf-8";
mail ("[email protected]", $tematyka, $wiadomosc, $headers );
header("Location: http://www.domyzpianobetonu.pl/formularz-ok.html");
?>
i nadal krzaki
edit zmineniłem na tak i nie ma
Kod:
<?php
$wiadomosc =
"Imie i nazwisko : ".$_POST['nick']."
Adres e- mail : ".$_POST['mail']."
Temat : ".$_POST['type']."
Tresc wiadomosci : ".$_POST['tresc']."
".$_POST['zgoda']." ";
$tematyka = "Wiadomosc z formularza kontaktowego";
$mailheaders.= "MIME-Version: 1.0\n";
$mailheaders.= "Content-Type: text/plain;\n";
$mailheaders.= "\tcharset=\"UTF-8\"\n";
$mailheaders.= "Content-Transfer-Encoding: 8bit\n\n";
mail ("[email protected]", $tematyka, $wiadomosc, $mailheaders);
header("Location: http://www.domyzpianobetonu.pl/formularz-ok.html");
?>