<?php if (count($_POST)) { $email = 'Mail odbiorcy'; $subject = 'Mail froml'; $message = 'Wiadomość została wysłana poprawnie!'; $error = 'Nieoczekiwany błąd! Spróbuj wysłać formularz ponownie.'; $charset = 'iso-8859-2'; $head = "MIME-Version: 1.0\r\n" . "Content-Type: text/plain; charset=$charset\r\n" . "Content-Transfer-Encoding: 8bit"; $body = ''; foreach ($_POST as $name => $value) { if (is_array($value)) { for ($i = 0; $i < count($value); $i++) { $body .= "$name=" . (get_magic_quotes_gpc() ? stripslashes($value[$i]) : $value[$i]) . "\r\n"; } } else $body .= "$name=" . (get_magic_quotes_gpc() ? stripslashes($value) : $value) . "\r\n"; } echo mail($email, "=?$charset?B?" . base64_encode($subject) . "?=", $body, $head) ? $message : $error; } else { ?> <form action="?" method="post"> <div> <p>Podaj swoje imię, nazwisko lub nick</p> <input name="Nadawca" /><br /><br /> <p>Podaj temat listu</p> <select name="Temat"> <option selected="selected">Pytanie</option> <option>Pilne</option> <option>Błąd na stronie lub forum</option> <option>Sugestia/Propozycja</option> <option>Inny temat</option> </select><br /><br /> <textarea name="Treść" cols="50" rows="10">Proszę, wpisz tutaj treść listu...</textarea> <br /><br /><br /> <input type="submit" value="Wyślij wiadomość" /> <input type="reset" value="Wyczyść formularz!" /> </div> </form> <?php } ?>