I dont know much about this stuff, so let me just say what is wrong and hopefully you guys wont kill me :P
I ve been having some problems with this simple php mail form
, mainly with some emails disappearing randomly (i just don't receive them). I asked my hosting company to release the logs so i can see what is wrong. All they did was assure me that now everything should work, but it doesn't and its kinda all they did.
So now i was thinking maybe there is a way to add an extra line to my code where i can add a specific email address created by me? This way I will be able to controll everything that happends with logs and stuff.
<?php
$wiadomosc =
"Imie i nazwisko: ".$_POST['nick']."
Adres e-mail: ".$_POST['mail']."
Tytuł: ".$_POST['tytul']."
Treść wiadomości: ".$_POST['info']." ";
$tematyka = "Formularz kontaktowy".$temat;
mail ("myemail@example.eu", $tematyka, $wiadomosc );
?>