cakephp email component emails go to hotmail junk folder -



I am using the built-in email component of CakePHP 1.3, and it seems that all my emails are hotmail Junk folder
Do any of you know what Hotmail has to change to think, is not spam? If some of you experience the same problem, some feedback about what they have done or tried to fix it will be very appreciated.

Cheers,
Nicholas

The cake simply uses PHP built-in mail () feature without any further installation Your mail is not being accessed by a proper MX server, but instead sends SMMP port to remote mail and attempts to deliver directly.

You can see how easy it is to have the ability to send spam in this manner, instead of a proper mail server, the mail distributed by a random machine is likely to be classified as spam. .

Install the web server administrator to send mail from server to server. Alternatively you can use any trusted SMTP server to send mail (like Google).


Comments