I am trying to develop a contact form and to have a little verification through php. After the verifying part I'm trying to send a mail to my account and even if the form is submitted the mail still don't come.
<?php
$to = 'reciever@email.com';
$subject = 'This is the subjcet';
$message = 'This is the message';
mail($to,$subject,$message);
?>
I just posted the part of sending the mail. I have to mention that the page is hosted through a free web hosting service.