Results 1 to 2 of 2

Thread: php mail() not workin

  1. #1
    Join Date
    May 2011
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default php mail() not workin

    <?php

    $ADDR = "xxxxxx@gmail.com";
    if (mail($ADDR,"Testing","This is a test"))
    echo "Mail function succeeded<br />";
    else
    echo "Mail function FAILED<br />";
    ?>

    php mail is not working
    is there a php ini setting related to php mail function

    i am using 0fees.net free hosting

    i hav tested many scripts from simple to advanced with headers and html too
    nothing seems to work


    would be great if someone using 0fees.net could help me with it
    Last edited by web242; 06-10-2011 at 08:35 AM.

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Run the following as a new .php page:
    <?php phpinfo(); ?>


    That will give you a lot of information, and you can look to see whether mail() is enabled.

    The server must have an available mail server-- it must be installed and enabled.

    You can use php.ini and potentially other methods to enable it, but not if your host doesn't allow it. Contact them to ask, and I'm sure they also can help you set it up if it is allowed. If it's not allowed, even if you can get around it, it is probably breaking the TOS and your account may be suspended, so I don't recommend trying to force it to work if it isn't supposed to.

    Free hosts are very limited, and you get what you pay for. They do work, but for only $5/mo there are many hosts that include fully working PHP, databases, probably more space, etc.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •