How can I manage my PHP mail() settings so I can recieve e'mail on my site?
Script is very simple:


<?php
mail('myaddress@gmail.com','Test mail','The mail function is working!');
echo 'Mail sent!';
?>

I do have my address there.
I
t says "Mail sent!" but I don't have anything anywhere, even in SPAM folder.

Can someone help me?