sendmail_from - no value. Zastanawiam się czy jest to wina serwera czy błąd w skrypcie. Oto moje wypociny:
<!-- formularz start --> <?php ?> <table> <form action="?" method="post"> <tr><td>Imię i Nazwisko:</td> <td><input type="text" name="imienazwisko" style="width:290px;"/></td> </tr><tr> <td>Telefon:</td> <td><input type="text" name="telefon" style="width:290px;"/></td> </tr><tr> <td>E-Mail:</td> <td><input type="text" name="email" style="width:290px;"/></td> </tr><tr> <td>Treść wiadomości:</td> <td><textarea name="trescwiadomosci" style="height:150px;width:290px;"></textarea></td> </tr><tr> <td> </td> <td><input type="submit" name="submit" value="Wyślij wiadomość"/><input type="reset" value="Wyczyść pola"></td> </td> </form></tr> </table> <?php /* Funkcja sprawdzająca poprawność E-Maila */ function SprawdzEmail($email) { return false; } return true; } if(SprawdzEmail($_POST['email'])){ /* Tworzymy szkielet wysyłanej wiadomości */ $adresemail="sider89@tlen.pl"; //tutaj podaje swój email $ip=$_SERVER['REMOTE_ADDR']; $host=gethostbyaddr($_SERVER['REMOTE_ADDR']); $wiadomosc="Od: $_POST[imienazwisko] ($_POST[email])\nIP: $ip, HOST: $host\n\n$_POST[trescwiadomosci]"; $nadawca="From: $_POST[email]"; ?> <!-- formularz stop -->