Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do i stop emails being delivered to the spam folder?

Status
Not open for further replies.

pushyr

Programmer
Jul 2, 2007
159
GB
i'm running an email script and that always end up in the spam folder. is there a way to make it go to the inbox?

is it something to do with the headers? these are the headers that i'm using,

Code:
$headers = "MIME-Version: 1.0\r\n"; 
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; 
$headers .= 'From: me<me@myemail.com>';
 
Hi

It is up to your spam filter. Read its documentation then configure it to always consider mails arrived from the given address as legitimate.

In fact all three header lines you posted may influence the way the filter judges the mail. But of course, the content mail be also important. Or not. Again, it depends on the spam filter.

Feherke.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top