+ Reply to Thread
Results 1 to 8 of 8

Thread: Quick question
      
   

  1. #1
    RaidersLive is offline Corporal
    Join Date
    Jun 2006
    Posts
    15

    Default Quick question

    When my form entries are sent to my e-mail, they send as: "Mail Delivery failed: returning message to sender"

    Here's the code on my thank you page, any ideas?

    www.raiderslive.com

    <script language="php">
    $email = $HTTP_POST_VARS[email];
    $mailto = "raidecom@raiderslive.com";
    $mailsubj = "Form submission";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form:\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }
    if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
    </script>

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: Quick question

    Your code seems correct. Check your email account
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    RaidersLive is offline Corporal
    Join Date
    Jun 2006
    Posts
    15

    Default Re: Quick question

    The form gets emailed, the subject is "Mail delivery failed: returning message to sender" though, just doesn't seem correct...

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: Quick question

    I tried sending a simple email to yours, and it gave me the same error. So i can simply suppose that either your email address in the script is wrong, or your email account is not perfectly functioning.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  5. #5
    RaidersLive is offline Corporal
    Join Date
    Jun 2006
    Posts
    15

    Default Re: Quick question

    Has to be the address, any idea how to fix that?

  6. #6
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: Quick question

    What's your real email?
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  7. #7
    RaidersLive is offline Corporal
    Join Date
    Jun 2006
    Posts
    15

    Default Re: Quick question

    my bluevoda email? raidecom@raiderslive.com

  8. #8
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,061

    Default Re: Quick question

    It seems that you have an email problem, not a form problem. This is what i get when i send you a normal email:

    - These recipients of your message have been processed by the mail server:
    raidecom@raiderslive.com; Failed; 5.1.1 (bad destination mailbox address)

    Remote MTA raiderslive.com: SMTP diagnostic: 550-"The recipient cannot be verified. Please check all recipients of this\r\n550 message to verify they are valid."


    Please check your email account
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49