Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Will pay through paypal for php mail form solution

  1. #1
    goldphilly28 is offline x10Hosting Member goldphilly28 is an unknown quantity at this point
    Join Date
    May 2011
    Posts
    8

    Will pay through paypal for php mail form solution

    Okay so if you know the cause already and can fix this issue, without google apps, i will pay you money through paypal. This issue is all over the forums but no real solution and does not make any sense.

    The php mail form on my x10 site works, almost. it forwards to info@[mydomain].com a local x10 mailbox. the autoreply works for all email addresses. but it is very iffy and though worked in the beginning does not work now with my hotmail address, even though my hotmail address ALWAYS gets the auto reply, but the form itself is not forwarded. sometimes it works with gmail accounts, and sometimes not. it almost always works when i enter in a fake email address. i tried making the from and reply to static addresses and it doesn't help. I changed the text/html to text/plain and it helped a little bit but still very uncertain.

    This is obviously something wrong with x10. when i send email from my hotmail directly to the info address it goes through. I think that x10 is filtering its own mail that it is sending to itself because it deems it as spam since the source is not verified.

    Feel free to respond here or PM me if you know the solution and want to get paid because i need this fixed, fast.

  2. #2
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,998

    Re: Will pay through paypal for php mail form solution

    It -could- just be that hotmail has our email servers blacklisted, cause they do indeed have us blacklisted. I'll still forward this to admins, but if hotmail is blacklisting us again, there's not a lot we can do.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  3. #3
    goldphilly28 is offline x10Hosting Member goldphilly28 is an unknown quantity at this point
    Join Date
    May 2011
    Posts
    8

    Re: Will pay through paypal for php mail form solution

    again, it has nothing to do with hotmail. hotmail is receiving the autoreplies. it is the local mail server that is rejecting locally created php mail forms with from: hotmail addresses. no where along the way are hotmail servers involved.

    thank you.

  4. #4
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,998

    Re: Will pay through paypal for php mail form solution

    That actually makes -sense- for it to block a from: hotmail address.

    http://x10hosting.com/aup

    "* Forging of any TCP-IP packet header or any part of the header information in an e-mail or a newsgroup posting; "

    Having a "from" address set to hotmail when it's being sent from x10hosting would be considered forging the headers inside the e-mail - that'd explain why it won't let it go through. Forging headers is what got us blocked at more than a few email providers in the past - doesn't surprise me that we're actively blocking them -before- they get sent now.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  5. #5
    goldphilly28 is offline x10Hosting Member goldphilly28 is an unknown quantity at this point
    Join Date
    May 2011
    Posts
    8

    Re: Will pay through paypal for php mail form solution

    even when i set the from: and reply-to: fields to my own email address it still is not going through, as if sending to myself is also blocked. could anyone recommend a php setting variable that will be acknowledged by the server? again if im sending to myself it still doesn't go through...can someone post a php mail script that WORKS?

  6. #6
    Livewire's Avatar
    Livewire is offline Abuse Compliance Officer Livewire is a glorious beacon of lightLivewire is a glorious beacon of light
    Join Date
    Jun 2005
    Location
    Behind a keyboard.
    Posts
    8,998

    Re: Will pay through paypal for php mail form solution

    I did forward this to one of the admins already, not sure if they've seen my message yet or not. With any luck they can shed a bit more light on what's going on.


    TOS breakers will be suspended regardless of race, creed, national origin, hair color, or favorite food. Thanks for your understanding!

  7. #7
    stpvoice's Avatar
    stpvoice is offline Community Support Rep stpvoice has a brilliant futurestpvoice has a brilliant futurestpvoice has a brilliant future
    Join Date
    Dec 2008
    Location
    United Kingdom
    Posts
    5,939

    Re: Will pay through paypal for php mail form solution

    Hello,

    This script works on all free servers:
    Code:
    <?php
    $to  = 'email@domain.com' . ', ';
    $subject = 'Your subject';
    $message = '
    Enter the message contents here.
    ';
    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/plain; charset=iso-8859-1' . "\r\n";
    $headers .= 'To: First Last <email@domain.com>' . "\r\n";
    $headers .= 'From: First Last <email@domain.com>' . "\r\n";
    
    if (mail($to,$subject,$message,$headers) ) {
           echo "Email sent";
        } else {
           echo "Email sending failed";
    };
    ?>


  8. #8
    goldphilly28 is offline x10Hosting Member goldphilly28 is an unknown quantity at this point
    Join Date
    May 2011
    Posts
    8

    Re: Will pay through paypal for php mail form solution

    yeah that's not the issue either because when i put in completely fake emails it works fine and gets to the inbox, displaying the from and reply to as the fake address no problem...

    so yeah unless you are actively only filtering hotmail and gmail accounts i doubt that is what is going on.

    i highly recommend you guys look into this issue, i am more than willing to help because this issue is ongoing ive read about it from a number of people and honestly im about to switch which is sad because you guys truly do have an amazing service and ive already recommended a bunch of people.

  9. #9
    stpvoice's Avatar
    stpvoice is offline Community Support Rep stpvoice has a brilliant futurestpvoice has a brilliant futurestpvoice has a brilliant future
    Join Date
    Dec 2008
    Location
    United Kingdom
    Posts
    5,939

    Re: Will pay through paypal for php mail form solution

    Hello,

    That script was originally configured to send to my personal gmail account. It is and has been working fine on all free servers since I put it there. I strongly suggest you look into investigating the issue with your script, or using a third party mail service such as Google Apps to bypass the blacklisting. Sending to hotmail is a known issue, and due to the nature of free hosting we do end up blacklisted by quite a lot of providers. I'm sure you'd have more success if you upgraded to premium, as the mail servers are different and there is less abuse as it's a paid service.

    Thanks.


  10. #10
    goldphilly28 is offline x10Hosting Member goldphilly28 is an unknown quantity at this point
    Join Date
    May 2011
    Posts
    8

    Re: Will pay through paypal for php mail form solution

    could you please post this script i don't mind sending directly to my gmail account. thanks.

Closed Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Solution for "Mail deletion issue"
    By ankurdubey in forum Free Hosting
    Replies: 0
    Last Post: 10-27-2010, 07:53 AM
  2. Replies: 1
    Last Post: 10-04-2010, 02:46 PM
  3. form mail problem - sends but can't receive mail
    By scotlundy in forum Free Hosting
    Replies: 0
    Last Post: 02-11-2010, 10:04 AM
  4. Replies: 14
    Last Post: 03-03-2009, 06:30 PM
  5. paypal payment form
    By relisys in forum Scripts & 3rd Party Apps
    Replies: 2
    Last Post: 09-06-2008, 07:37 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers