Mam pytanie gdy wysyłam mail ze strony, to w treści zamiast polskich znaków są znaki zapytania, w czym może byc problem?
Plik skrypt.php:
<html>
<head>
<title>Juwe Games</title>
<link rel="shortcut icon" href="favicon.png" type="image/png" />
<link href="style.css" rel="stylesheet" type="text/css">
<link href="animate.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Hind:500,600&subset=latin-ext" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Palanquin+Dark" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body id="ind">
<section class="kontakt" id="kontakt">
<div class="container">
<img style="margin-top:-50px;margin-bottom:-30px;"src="logo.png" width="300px;"/>
<h2>Dziękujemy za zgłoszenie do turnieju!</h2>
<p><a href="index.html">Powrót na strone główną</a></p>
</div>
<?PHP
iconv_set_encoding("internal_encoding", "UTF-8");
$adresat = 'kontakt@juwegames.pl'; // pod ten adres zostanie wysłana // wiadomosc
@$email = $_POST['email'];
@$gra = $_POST['gra'];
@$content = "Gra: ".$_POST['gra']." Zawodnicy: ".$_POST['content']." Mail: ".$_POST['email'];
$header = "From: kontakt@juwegames.pl \nContent-Type:".
' text/plain;charset="iso-8859-2"'.
"\nContent-Transfer-Encoding: 8bit";
if (mail($adresat, 'Zgłoszenie do turnieju', utf8_decode($content), $header, "-f kontakt@juwegames.pl"))
echo '<p></p>';
else
echo '<p></p>';
?>
</section>
</body>
</html>