i have one issue sending HTML mails using my PHP code. html mail works fine until i use any link in the HTML page, ex <a href="something.com">click here</a>... when i use link in HTML body, it goes to Bulk folder... any idea ?
This doesn't have to do with php, but with your email client. Your email client filters the emails he receives and maybe the ones that have links in them are considered as spam and sent to the Bulk folder.
hey Dwaighty, well this is not the case, that;s what i m wondering ... whever i get any html mail except sent by my php script, everything work well. if u want i can write down my php mail script...
The href parameter has to be an explicit URL. For example: <a href="something.com">click here</a> - is incorrect <a href="http://www.bla.com/something.com">click here</a> - is correct I have seen some filters see this as an attempt to execute something on the local machine, thus, moving it to bulk/spam. -Bing