i have to send a mail through my PHP script it work well
but the mail goes to the bulk.
Because the server treat this mail as Spam mail.
if any body have solution on this topic plz help me .
make sure there are no "spam keywords" in it (e.g. viagra, p0rn etc), provide your full name and email address when sening mail, use appropriate headers, dont send html emails! thats your best chance of getting it to an inbox...
__________________ Alexa Share <-- Trade virtual shares in websites with this online game.
codR.us <-- Submit and vote for your favorite code snippets with codR.us.
make sure there are no "spam keywords" in it (e.g. viagra, p0rn etc), provide your full name and email address when sening mail, use appropriate headers, dont send html emails! thats your best chance of getting it to an inbox...
I agree, the big one is the originators email address and keywords. I use a simple mail instruction of:
PHP Code:
$toemail = "bob@hotmail.com" ; // this is the reciever
$subject = "mail subject" ;
$emailmessage = "this is my message" ;
$myemail = "admin@domain.com" ;