Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: Verifying Email

  1. #11
    Join Date
    Apr 2007
    Posts
    2,202

    Default

    There is no reason for mail not working as it works on our demo site and for all others, so only reason i can see is mail server problem (may be black listed).

    As for the static page problem, check the permission now, this will only happen if you have wrong permission/owenership.

  2. #12
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    They're telling me that there's nothng wrong with the mail servers and that it's a script issue (which I doubt is true). So, why the "send mail test" didn't work, which is a basic script for testing php send mail, indicates to me that it's a problem on my host end really.
    If it's not fun, stop doing it!

  3. #13
    Join Date
    Apr 2007
    Posts
    2,202

    Default

    There should be some problem... may be ip got blacklisted, it way server admin can easily find out what is going on the server by checking the mail server log.

  4. #14
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    Well, to test this theory, I tried a different "test mail" script on my main domain and it worked fine.

    <?php
    //define the receiver of the email
    $to = '[email protected]';
    //define the subject of the email
    $subject = 'Test email';
    //define the message to be sent. Each line should be separated with \n
    $message = "Hello World!\n\nThis is my first mail.";
    //define the headers we want passed. Note that they are separated with \r\n
    $headers = "From: [email protected]\r\nReply-To: [email protected]";
    //send the email
    $mail_sent = @mail( $to, $subject, $message, $headers );
    //if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
    echo $mail_sent ? "Mail sent" : "Mail failed";
    ?>

    I don't know WHY the basic one doesn't work on my main domain but this one does. Weird, huh.

    I tried this script on my second video site "sca-video.com" and it's not working their either. None of the "mail test" scripts are working. I'll have to get a higher level tech or something or find out if I've been blacklisted (my sites are extremely low traffic [almost non-existant] so I don't think I'm blacklisted, but it won't hurt to check).

    I'm also going to have to try this on all my domains and send a report to tech support. Bleh.
    If it's not fun, stop doing it!

  5. #15
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default

    UPDATE
    The email is now working. It took a long time for the mail to be sent, but it's finally received. Maybe when I sent my email to tech support they "kicked it". I don't know....

    The nice thing about all this is that there is no law against bashing computers around a bit.
    If it's not fun, stop doing it!

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Email does not work- Please help!
    By mudstock in forum Installation Support
    Replies: 1
    Last Post: 04-13-2009, 03:51 PM
  2. Restriction Email Signups to a certain email domain!
    By porkd in forum Template Modifications
    Replies: 0
    Last Post: 02-21-2008, 03:28 AM
  3. email confirmation
    By dropk1d in forum Fixed Bugs
    Replies: 4
    Last Post: 01-20-2008, 03:25 AM
  4. Email to ALL
    By browniegirl in forum Template Modifications
    Replies: 0
    Last Post: 10-07-2007, 11:05 PM
  5. "Email Settings --> Add Email Template" feature
    By leki in forum General Discussions
    Replies: 1
    Last Post: 08-29-2007, 07:49 AM

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
  •