Hi. I am trying to automatically have a mail sent to the user when they do certain things on my website, such as signup or write a message to someone. I am using the php mail() command, as shown here:
$to = "foid025@msn.com"; //accepted user's email
$subject = $user . " has entered your eFamz network";
$message = "the email";
mail($to, $subject, $message);
Though this does not give me an error, I do not receive the email. Might 'mail' be unallowed on my server? Or could it be something else? Thanks!