Hi all,
Hum weird, I am very new to PHP and I am totally puzzled about this situation:
I have this very basic script, no error...
<?php
$to = "myemail@ssomewhere.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body))
{
echo("<p>Message sent!</p>"
;
}
else
{
echo("<p>Message delivery failed...</p>"
;
}
?>
But when I send and recieve from my Outlook, no emails coming in... All the OTHER email from other people came in fine just the once sent from my php script... Any ideas? Thanks!
JoJoH
Hum weird, I am very new to PHP and I am totally puzzled about this situation:
I have this very basic script, no error...
<?php
$to = "myemail@ssomewhere.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body))
{
echo("<p>Message sent!</p>"

}
else
{
echo("<p>Message delivery failed...</p>"

}
?>
But when I send and recieve from my Outlook, no emails coming in... All the OTHER email from other people came in fine just the once sent from my php script... Any ideas? Thanks!
JoJoH