Sender ID question
-
Hi, I have set up an HTML form on my webpage for users to send messages, so that we don't get lots of junk mail. The problem is the messages that are sent (via the PHP 'mail' function) are picked up as junk because there is no "sender ID". Is there a way around this so the messages are seen as valid? Cheers,
Mark Brock "We're definitely not going to make a G or a PG version of this. It's not PillowfightCraft." -- Chris Metzen Click here to view my blog
-
Hi, I have set up an HTML form on my webpage for users to send messages, so that we don't get lots of junk mail. The problem is the messages that are sent (via the PHP 'mail' function) are picked up as junk because there is no "sender ID". Is there a way around this so the messages are seen as valid? Cheers,
Mark Brock "We're definitely not going to make a G or a PG version of this. It's not PillowfightCraft." -- Chris Metzen Click here to view my blog
ini_set ("sendmail_from", "yourfakeemail@yourDomain.com"); Then make sure the sender is in your junk filter's allow list. Make sure all images are hyperlinks to images online somewhere and not attachments. For a better junk rating without using the allow list.
-
Hi, I have set up an HTML form on my webpage for users to send messages, so that we don't get lots of junk mail. The problem is the messages that are sent (via the PHP 'mail' function) are picked up as junk because there is no "sender ID". Is there a way around this so the messages are seen as valid? Cheers,
Mark Brock "We're definitely not going to make a G or a PG version of this. It's not PillowfightCraft." -- Chris Metzen Click here to view my blog
Also ensure all the correct headers are included ie: From Reply-To Content-Type mime-version eg: $headers = "From: Sendersender@yourdomain.com\r\nReply-To: sender@yourdomain.com"; //add boundary string and mime type specification $headers .= "\r\nContent-Type: text/html;"."MIME-Version: 1.0";