Ok so just to make sure I also tryed this:
<?php
// mail() test
error_reporting(E_ALL);
$ToName = "Someone";
$ToEmail = "nicolassima89@hotmail.com";
$FromName = "Me";
$FromEmail = "nicolassima89@nick89.x10.mx";
// TEST 1
$email = "$ToName <$ToEmail>";
$from = "$FromName <$FromEmail>";
$subject="Testing Minimal Mail Functionality #1";
$message="Minimal Mail Functionality Test #1 Seems to Be Working!";
if(mail("$email","$subject","$message","From: $from")){
echo "email #1 sent !!! </br>";
}else{
echo "email #1 error !!! </br></br>";
}
// TEST 2
$email = "$ToEmail";
$from = "$FromEmail";
$subject="Minimal Mail Functionality #2";
$message="Minimal Mail Functionality Test #2 Seems to Be Working!";
if(mail("$email","$subject","$message","From: $from")){
echo "email #2 sent !!! </br>";
}else{
echo "email #2 error !!! </br></br>";
}
// TEST 3
$email = "$ToEmail";
$subject="Testing Minimal Mail Functionality #3";
$message="Minimal Mail Functionality Test #3 Seems to Be Working!";
if(mail("$email","$subject","$message")){
echo "email #3 sent !!! </br>";
}else{
echo "email #3 error !!! </br></br>";
}
?>
and I get the error on all 3 emails!
nothing in spam, nothing came back to my from email....
thanks in advance!
Nick