It means that smtp.live.com will only send emails via an TLS connection (TLS is an upgrade from SSL).
So you might want to search google for how to configure PHP specifically for live.com. If not, you can use a PHP based SMTP class as it will allow you to put in the user/pass and TLS settings.
digital-ether
Nearly a Posting Virtuoso
1,293 posts since Sep 2005
Reputation Points: 461
Solved Threads: 101
It is actually harder to set up email on your localhost then your actual webserver. For one your localhost is likely windows, which doesn't have sendmail built in. The other is if you use SMTP, usually you use your servers SMTP server and your PHP script is considered to run on the local netwowrk. Many mail servers will allow local connections to the SMTP server without authentication.
The other thing is that SMTP servers do not trust IP addresses issued to regular internet subscribers (your local IP). Your local computer is also unreachable from the internet, making some verification features (spam checks) impossible to do. Your remote web server usually has an SMTP server configured for this.
digital-ether
Nearly a Posting Virtuoso
1,293 posts since Sep 2005
Reputation Points: 461
Solved Threads: 101