Search results

  1. N

    PHP mail()

    Wow, that really ruins everything! all right then, I guess I'm going host hunting again :( Thank you anyways, Nick
  2. N

    PHP mail()

    OK, now I get the "mail sent !!!" instead of "Error" message but the email never gets to my inbox! Is anyone working on anything?
  3. N

    PHP mail()

    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 =...
  4. N

    PHP mail()

    Thank you for your quick reply. I tryed runnin this simple script: <?php $to = "nicolassima89@hotmail.com"; $subject = "Test"; $message = "Test."; $from = "someone@example.com"; $headers = "From: $from"; if (mail($to,$subject,$message,$headers)) echo "Mail Sent."; else echo...
  5. N

    PHP mail()

    Hi, I want to send automated email messages from my PHP application in direct response to a user's action but the PHP mail() function doesn't seem to work. Is there anyway we can fix that?
Top