gish Posted October 2, 2007 Share Posted October 2, 2007 hi everyone i am running apache2 server at home (that is on the internet). My problem is this all php scripts except this one is working. The email account does exist and this is the entire script. I place it on the web server and then run it. It tells me that it is sent but I never get an email. Any direction would be helpful? <?php // Your email address $email = "[email protected]"; // The subject $subject = "Enter your subject here"; // The message $message = "Enter your message here"; mail($email, $subject, $message, "From: $email"); echo "The email has been sent."; ?> gish Link to comment https://forums.phpfreaks.com/topic/71457-mail-php5/ Share on other sites More sharing options...
haaglin Posted October 2, 2007 Share Posted October 2, 2007 Have you checked your spam box? I have a problem recieving emails if they come from a subdomain on my server. (subdomain.domain.com instead of www.domain.com). I dont know why.. Link to comment https://forums.phpfreaks.com/topic/71457-mail-php5/#findComment-359999 Share on other sites More sharing options...
MadTechie Posted October 2, 2007 Share Posted October 2, 2007 check the Mail Settings in the PHP.INI file and update them with the correct SMTP/POP settings, Link to comment https://forums.phpfreaks.com/topic/71457-mail-php5/#findComment-360003 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.